Merge branch 'master' into prv-ga-merge

This commit is contained in:
Joel Dice
2012-02-27 13:28:06 -07:00
9 changed files with 32 additions and 14 deletions

View File

@ -40,7 +40,7 @@ public abstract class URLStreamHandler {
host = s.substring(0, colon);
port = Integer.parseInt(s.substring(colon + 1, slash));
}
s = s.substring(slash + 1);
s = s.substring(slash);
}
}