fix broken commit

This commit is contained in:
Mark Harrah 2012-11-05 10:09:39 -05:00
parent b6ff789d44
commit b451761478
1 changed files with 1 additions and 1 deletions

View File

@ -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 {