Skip to content

Commit

Permalink
Update dependency com.pinterest.ktlint:ktlint-bom to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber committed Dec 19, 2023
1 parent d8de982 commit 056a8a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dokka = "1.9.10"

kotlin = "1.9.21"

ktlint = "1.0.1"
ktlint = "1.1.0"

publish = "0.26.0"

Expand Down
3 changes: 2 additions & 1 deletion uri/src/commonMain/kotlin/com/eygraber/uri/UriCodec.kt
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ public object UriCodec {
c in uppercaseAsciiAlphaRange ||
c in digitAsciiRange ||
c in defaultAllowedSet ||
allow != null && allow.indexOf(c) != -1
allow != null &&
allow.indexOf(c) != -1

/**
* Decodes '%'-escaped octets in the given string using the UTF-8 scheme.
Expand Down

0 comments on commit 056a8a7

Please sign in to comment.