AttributedString.java, [...]: Cleaned up imports.
authorDalibor Topic <robilad@kaffe.org>
Wed, 5 May 2004 07:35:49 +0000 (07:35 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Wed, 5 May 2004 07:35:49 +0000 (07:35 +0000)
2004-05-05  Dalibor Topic  <robilad@kaffe.org>

* java/text/AttributedString.java,
java/text/AttributedStringIterator.java,
java/text/Collator.java,
java/text/DecimalFormatSymbols.java,
java/text/NumberFormat.java,
java/text/RuleBasedCollator.java:
Cleaned up imports.

From-SVN: r81506

libjava/ChangeLog
libjava/java/text/AttributedString.java
libjava/java/text/AttributedStringIterator.java
libjava/java/text/Collator.java
libjava/java/text/DecimalFormatSymbols.java
libjava/java/text/NumberFormat.java
libjava/java/text/RuleBasedCollator.java

index 20362a972c41ac6b611c3b144f1cc875ba733a3f..ef0317c2847972ed6d2aff64355e38beaeb63b6d 100644 (file)
@@ -1,3 +1,13 @@
+2004-05-05  Dalibor Topic  <robilad@kaffe.org>
+
+       * java/text/AttributedString.java,
+       java/text/AttributedStringIterator.java,
+       java/text/Collator.java,
+       java/text/DecimalFormatSymbols.java,
+       java/text/NumberFormat.java,
+       java/text/RuleBasedCollator.java:
+       Cleaned up imports.
+
 2004-05-05  Tom Tromey  <tromey@redhat.com>
 
        * java/text/Format.java: Cleaned up imports.
index 46cbf92d52683c78bcef3700beb3eebb7ea827e8..8304cedf7bc1a24c4c577caee4911a26fcf0212b 100644 (file)
@@ -39,10 +39,9 @@ exception statement from your version. */
 package java.text;
 
 import java.util.Arrays;
-import java.util.Iterator;
 import java.util.HashMap;
 import java.util.Hashtable;
-import java.util.HashSet;
+import java.util.Iterator;
 import java.util.Map;
 import java.util.Set;
 
index 98204574c86797c9867ae2fb74dd093726596c78..ca20801141c76bbe9277b69d8f1c7fb33d39c5b4 100644 (file)
@@ -1,5 +1,5 @@
 /* AttributedStringIterator.java -- Class to iterate over AttributedString
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -38,11 +38,11 @@ exception statement from your version. */
 
 package java.text;
 
-import java.util.Set;
-import java.util.HashSet;
-import java.util.Map;
 import java.util.HashMap;
+import java.util.HashSet;
 import java.util.Iterator;
+import java.util.Map;
+import java.util.Set;
 
 /**
   * This class implements the AttributedCharacterIterator interface.  It
index 907057eb0f9b44a67f8fc2149b4e68bb4f7e81f5..7944d9501e5fca9453b14170465095159a6e03ab 100644 (file)
@@ -1,5 +1,5 @@
 /* Collator.java -- Perform locale dependent String comparisons.
-   Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -38,10 +38,10 @@ exception statement from your version. */
 
 package java.text;
 
+import java.util.Comparator;
 import java.util.Locale;
 import java.util.MissingResourceException;
 import java.util.ResourceBundle;
-import java.util.Comparator;
 
 /**
  * This class is the abstract superclass of classes which perform 
index 35e75311eb09354d126a89ca5dbe8cb1a7239b53..843b6020b3a8273fee7338a40947554544ca8141 100644 (file)
@@ -1,5 +1,5 @@
 /* DecimalFormatSymbols.java -- Format symbols used by DecimalFormat
-   Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -38,13 +38,13 @@ exception statement from your version. */
 
 package java.text;
 
+import java.io.IOException;
+import java.io.ObjectInputStream;
 import java.io.Serializable;
 import java.util.Currency;
 import java.util.Locale;
 import java.util.MissingResourceException;
 import java.util.ResourceBundle;
-import java.io.ObjectInputStream;
-import java.io.IOException;
 
 /**
  * This class is a container for the symbols used by 
index 42372908e39ff3ae0b825ae6a4549afead1cd61e..6520f7524e0abf6540d035f700917d7bede43ee3 100644 (file)
@@ -38,8 +38,8 @@ exception statement from your version. */
 
 package java.text;
 
-import java.io.InvalidObjectException;
 import java.io.IOException;
+import java.io.InvalidObjectException;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
 import java.util.Currency;
index 1c1feab4e3c5cf3f9192f9e33a66216ee70bf58b..64c2ac231f7524939f50f6955d774146d2d300a8 100644 (file)
@@ -1,5 +1,5 @@
 /* RuleBasedCollator.java -- Concrete Collator Class
-   Copyright (C) 1998, 1999, 2000, 2001, 2003  Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.