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

@ -11,7 +11,7 @@ public class BufferedReader extends Reader {
this.buffer = new char[bufferSize];
}
protected BufferedReader(Reader in) {
public BufferedReader(Reader in) {
this(in, 32);
}