more work on java/lang/ref/* support

This commit is contained in:
Joel Dice
2007-07-19 19:07:30 -06:00
parent b213ec0ef8
commit faf9b63798
6 changed files with 59 additions and 22 deletions

View File

@ -8,4 +8,8 @@ public class PhantomReference<T> extends Reference<T> {
public PhantomReference(T target) {
this(target, null);
}
public T get() {
return null;
}
}