Skip to content

Commit

Permalink
Bug fix in method toUriString()
Browse files Browse the repository at this point in the history
  • Loading branch information
oxgl committed Nov 13, 2019
1 parent 61a5bc7 commit 21afbee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "com.oxyggen.net"
version = "1.0.3"
version = "1.0.4"


repositories {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/oxyggen/net/URI.kt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ open class URI(uriString: String, context: ContextURI? = null) {
if (isRelative) {
schemeSpecificPart
} else {
"$scheme:$schemeSpecificPart)"
"$scheme:$schemeSpecificPart"
}

companion object {
Expand Down

0 comments on commit 21afbee

Please sign in to comment.