GC stress fixes and other bugfixes; classpath progress

This commit is contained in:
Joel Dice
2007-07-29 17:32:23 -06:00
parent d5a00c4556
commit a2bd7d0668
27 changed files with 463 additions and 75 deletions

View File

@ -1,5 +1,9 @@
package java.net;
public class URL {
private final String value;
public URL(String s) throws MalformedURLException {
value = s;
}
}