mirror of https://github.com/sbt/sbt.git
fix broken commit
This commit is contained in:
parent
b6ff789d44
commit
b451761478
|
|
@ -83,7 +83,7 @@ object IO
|
|||
private[this] def uriToFile(uriString: String): File =
|
||||
{
|
||||
val uri = new URI(uriString)
|
||||
assert(uri.getProtocol == FileProtocol, "Expected protocol to be '" + FileScheme + "' in URI " + uri)
|
||||
assert(uri.getScheme == FileScheme, "Expected protocol to be '" + FileScheme + "' in URI " + uri)
|
||||
if(uri.getAuthority eq null)
|
||||
new File(uri)
|
||||
else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue