flesh out classpath enough to test threading; fix indexing bug in parsePool()

This commit is contained in:
Joel Dice
2007-07-04 16:27:08 -06:00
parent 1182ea9540
commit c3320c2c97
14 changed files with 240 additions and 12 deletions

View File

@ -0,0 +1,13 @@
package java.lang;
public class Long {
private final long value;
public Long(long value) {
this.value = value;
}
public long longValue() {
return value;
}
}