]> gcc.gnu.org Git - gcc.git/commitdiff
Collator.java (decomposeCharacter, [...]): Now package-private, not protected.
authorTom Tromey <tromey@redhat.com>
Wed, 6 Dec 2000 21:14:14 +0000 (21:14 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 6 Dec 2000 21:14:14 +0000 (21:14 +0000)
* java/text/Collator.java (decomposeCharacter, decmp, strength):
Now package-private, not protected.
* java/text/DateFormatSymbols.java (equals): Now private.
* java/text/DecimalFormatSymbols.java (safeGetChar): Now private.
* java/util/BitSet.java: Class no longer final.
* java/util/Set.java (toArray(Object[])): New method.

From-SVN: r38075

libjava/ChangeLog
libjava/java/text/Collator.java
libjava/java/text/DateFormatSymbols.java
libjava/java/text/DecimalFormatSymbols.java
libjava/java/util/BitSet.java
libjava/java/util/Set.java

index c8657850ea25e1eec80fa543d999f002b9db6bc3..f870e1c7ad55286fd25d9a2d124dec324afe78c6 100644 (file)
@@ -1,3 +1,12 @@
+2000-12-05  Tom Tromey  <tromey@redhat.com>
+
+       * java/text/Collator.java (decomposeCharacter, decmp, strength):
+       Now package-private, not protected.
+       * java/text/DateFormatSymbols.java (equals): Now private.
+       * java/text/DecimalFormatSymbols.java (safeGetChar): Now private.
+       * java/util/BitSet.java: Class no longer final.
+       * java/util/Set.java (toArray(Object[])): New method.
+
 2000-12-04  Warren Levy  <warrenl@redhat.com>
 
        * java/util/TimeZone.java (getAvailableIDs): Activated commented
index 60da5312b4f539b2d18a375b70c8bad8905b766e..9a356c16541838b9e08d3108408b9d72d619c1b7 100644 (file)
@@ -132,9 +132,9 @@ public abstract class Collator implements Comparator, Cloneable
   }
 
   // Decompose a single character and append results to the buffer.
-  protected native final void decomposeCharacter (char c, StringBuffer buf);
+  native final void decomposeCharacter (char c, StringBuffer buf);
 
   // These names are fixed by the serialization spec.
-  protected int decmp;
-  protected int strength;
+  int decmp;
+  int strength;
 }
index 9e8bc0c65c83ed24d1bb577551c67bfbcbf53565..efe1d891e0dc7be0925b3e3d71a05d5ff6f76835 100644 (file)
@@ -265,7 +265,7 @@ public class DateFormatSymbols extends Object
   }
 
   /* Does a "deep" equality test - recurses into arrays. */
-  protected static boolean equals (Object x, Object y)
+  private static boolean equals (Object x, Object y)
   {
     if (x == y)
       return true;
index d8b58b56df1855c201e8425df26ef3563f0ad9ad..0f404a57235dd7e23a4b561ea6d44cbf6cbf89d5 100644 (file)
@@ -72,8 +72,8 @@ public final class DecimalFormatSymbols implements Cloneable, Serializable
       return def;
     }
 
-  public final char safeGetChar (ResourceBundle bundle,
-                                String name, char def)
+  private final char safeGetChar (ResourceBundle bundle,
+                                 String name, char def)
     {
       String r = null;
       if (bundle != null)
index fa0f3a13e88230324b979041caeeb794595a0426..41dfbae9f06035c9eb6497d65823eb8f5cbe166b 100644 (file)
@@ -45,7 +45,7 @@ import java.io.Serializable;
  * @date October 23, 1998.
  * @status API complete to JDK 1.3.
  */
-public final class BitSet implements Cloneable, Serializable
+public class BitSet implements Cloneable, Serializable
 {
   /**
    * Create a new empty bit set.
index f1f836a0e8a603492d79cfbf0f49359c4c191251..4eac12063e92bfd3a1877ef50e0fb14addc6e5c3 100644 (file)
@@ -1,5 +1,5 @@
 /* Set.java -- A collection that prohibits duplicates
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
This page took 0.07716 seconds and 5 git commands to generate.