clean up bootstrap type generation to eliminate redundancy (broken)

This commit is contained in:
Joel Dice
2007-11-04 14:15:28 -07:00
parent bea4a73f54
commit 94e9bd0fd2
20 changed files with 755 additions and 571 deletions

View File

@ -21,6 +21,7 @@ public final class Boolean implements Comparable<Boolean> {
}
public static Boolean valueOf(String s) {
Boolean.TRUE.booleanValue();
return ("true".equals(s) ? Boolean.TRUE : Boolean.FALSE);
}