classpath progress

This commit is contained in:
Joel Dice
2007-07-28 20:15:45 -06:00
parent a9e10d1c7f
commit 51943427ad
9 changed files with 120 additions and 11 deletions

View File

@ -4,7 +4,7 @@ public class StringWriter extends Writer {
private final StringBuilder out = new StringBuilder();
public void write(char[] b, int offset, int length) throws IOException {
out.append(new String(b, offset, length));
out.append(b, offset, length);
}
public String toString() {