Skip to content

Commit

Permalink
url returns java.net.URI
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Dec 5, 2024
1 parent 8bf9eca commit 11b0231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbt-app/src/main/scala/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ package object sbt
// IO
def uri(s: String): URI = new URI(s)
def file(s: String): File = new File(s)
def url(s: String): URL = new URI(s).toURL
def url(s: String): URI = new URI(s)
implicit def fileToRichFile(file: File): sbt.io.RichFile = new sbt.io.RichFile(file)
implicit def filesToFinder(cc: Iterable[File]): sbt.io.PathFinder =
sbt.io.PathFinder.strict(cc)
Expand Down

0 comments on commit 11b0231

Please sign in to comment.