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

Diff of /classpath/java/lang/String.java

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

revision 1.49 by mark, Tue Jul 30 21:17:55 2002 UTC revision 1.50 by mark, Tue Aug 13 20:51:07 2002 UTC
# Line 98  public final class String implements Ser Line 98  public final class String implements Ser
98     * @see #toUpperCase(char)     * @see #toUpperCase(char)
99     * @see CharData#UPPER_EXPAND     * @see CharData#UPPER_EXPAND
100     */     */
101    private static final char[] upperExpand = CharData.UPPER_EXPAND.value;    private static final char[] upperExpand
102            = Character.zeroBasedStringValue(CharData.UPPER_EXPAND);
103    
104    /**    /**
105     * Stores unicode multi-character uppercase special casing table.     * Stores unicode multi-character uppercase special casing table.
106     * @see #upperCaseExpansion(char)     * @see #upperCaseExpansion(char)
107     * @see CharData#UPPER_SPECIAL     * @see CharData#UPPER_SPECIAL
108     */     */
109    private static final char[] upperSpecial = CharData.UPPER_SPECIAL.value;    private static final char[] upperSpecial
110              = Character.zeroBasedStringValue(CharData.UPPER_SPECIAL);
111      
112    /**    /**
113     * Characters which make up the String.     * Characters which make up the String.
114     * Package access is granted for use by StringBuffer.     * Package access is granted for use by StringBuffer.

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50

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