/[classpath]/classpath/java/lang/Character.java
ViewVC logotype

Diff of /classpath/java/lang/Character.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.32 by mark, Thu Oct 3 17:26:44 2002 UTC revision 1.33 by cbj, Tue Apr 8 03:39:45 2003 UTC
# Line 1971  public final class Character implements Line 1971  public final class Character implements
1971        {        {
1972          // Signedness doesn't matter; 0xffff vs. -1 are both rejected.          // Signedness doesn't matter; 0xffff vs. -1 are both rejected.
1973          int digit = numValue[attr >> 7];          int digit = numValue[attr >> 7];
1974          return (digit >= 0 && digit < radix) ? digit : -1;          return (digit < radix) ? digit : -1;
1975        }        }
1976      return -1;      return -1;
1977    }    }

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26