[multiple changes]
authorDalibor Topic <robilad@kaffe.org>
Fri, 23 Apr 2004 06:36:06 +0000 (06:36 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Fri, 23 Apr 2004 06:36:06 +0000 (06:36 +0000)
2004-04-23 Dalibor Topic <robilad@kaffe.org>

* java/util/jar/JarFile.java,
java/util/jar/JarInputStream.java,
java/util/jar/JarOutputStream.java,
java/util/jar/Manifest.java:
Cleaned up imports.

2004-04-23 Dalibor Topic <robilad@kaffe.org>

* java/util/ArrayList.java,
java/util/Calendar.java,
java/util/Currency.java,
java/util/HashMap.java,
java/util/HashSet.java,
java/util/Hashtable.java,
java/util/LinkedList.java,
java/util/Properties.java,
java/util/PropertyPermission.java,
java/util/TimeZone.java,
java/util/TreeMap.java,
java/util/TreeSet.java,
java/util/Vector.java,
java/util/WeakHashMap.java:
Cleaned up imports.

2004-04-23  Dalibor Topic  <robilad@kaffe.org>

* java/util/logging/FileHandler.java,
java/util/logging/Formatter.java,
java/util/logging/Handler.java,
java/util/logging/Logger.java,
java/util/logging/SimpleFormatter.java,
java/util/logging/XMLFormatter.java:
Cleaned up imports.

From-SVN: r81077

25 files changed:
libjava/ChangeLog
libjava/java/util/ArrayList.java
libjava/java/util/Calendar.java
libjava/java/util/Currency.java
libjava/java/util/HashMap.java
libjava/java/util/HashSet.java
libjava/java/util/Hashtable.java
libjava/java/util/LinkedList.java
libjava/java/util/Properties.java
libjava/java/util/PropertyPermission.java
libjava/java/util/TimeZone.java
libjava/java/util/TreeMap.java
libjava/java/util/TreeSet.java
libjava/java/util/Vector.java
libjava/java/util/WeakHashMap.java
libjava/java/util/jar/JarFile.java
libjava/java/util/jar/JarInputStream.java
libjava/java/util/jar/JarOutputStream.java
libjava/java/util/jar/Manifest.java
libjava/java/util/logging/FileHandler.java
libjava/java/util/logging/Formatter.java
libjava/java/util/logging/Handler.java
libjava/java/util/logging/Logger.java
libjava/java/util/logging/SimpleFormatter.java
libjava/java/util/logging/XMLFormatter.java

index 53c81ea8256c921e78f7f5d53f344f1df97e8191..f05d3c21b67ec4b616277e00e4c042823ece05ba 100644 (file)
@@ -1,3 +1,39 @@
+2004-04-23 Dalibor Topic <robilad@kaffe.org>
+
+       * java/util/jar/JarFile.java,
+       java/util/jar/JarInputStream.java,
+       java/util/jar/JarOutputStream.java,
+       java/util/jar/Manifest.java:
+       Cleaned up imports.
+
+2004-04-23 Dalibor Topic <robilad@kaffe.org>
+
+       * java/util/ArrayList.java,
+       java/util/Calendar.java,
+       java/util/Currency.java,
+       java/util/HashMap.java,
+       java/util/HashSet.java,
+       java/util/Hashtable.java,
+       java/util/LinkedList.java,
+       java/util/Properties.java,
+       java/util/PropertyPermission.java,
+       java/util/TimeZone.java,
+       java/util/TreeMap.java,
+       java/util/TreeSet.java,
+       java/util/Vector.java,
+       java/util/WeakHashMap.java:
+       Cleaned up imports.
+
+2004-04-23  Dalibor Topic  <robilad@kaffe.org>
+
+       * java/util/logging/FileHandler.java,
+       java/util/logging/Formatter.java,
+       java/util/logging/Handler.java,
+       java/util/logging/Logger.java,
+       java/util/logging/SimpleFormatter.java,
+       java/util/logging/XMLFormatter.java:
+       Cleaned up imports.
+
 2004-04-22  Mark Wielaard  <mark@klomp.org>
 
        * Makefile.am (PEDANTIC_CFLAGS): New -ansi -pedantic -Wall
index c6f6b86991df5f1424c598923dc84aeb816f2dbe..a451f1e4c4aec9f6ab224d8a3dd96ae4ed392af2 100644 (file)
@@ -1,6 +1,6 @@
 /* ArrayList.java -- JDK1.2's answer to Vector; this is an array-backed
    implementation of the List interface
-   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.
 
@@ -39,11 +39,11 @@ exception statement from your version. */
 
 package java.util;
 
-import java.lang.reflect.Array;
-import java.io.Serializable;
 import java.io.IOException;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
+import java.io.Serializable;
+import java.lang.reflect.Array;
 
 /**
  * An array-backed implementation of the List interface.  This implements
index 48624beb614635a975e5bdcd3b5669951a5c66ec..2a1e1d8b70777c6f77203424248ddb48acb6e768 100644 (file)
@@ -1,5 +1,5 @@
 /* java.util.Calendar
-   Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -38,11 +38,11 @@ exception statement from your version. */
 
 package java.util;
 
-import java.lang.reflect.InvocationTargetException;
 import java.io.IOException;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
 import java.io.Serializable;
+import java.lang.reflect.InvocationTargetException;
 
 /**
  * This class is an abstract base class for Calendars, which can be
index a742831e4c3d11ca0703697351da59f223247fdc..fa98927377b4109192a90bcc627ca5f49afb4c17 100644 (file)
@@ -1,5 +1,5 @@
 /* Currency.java -- Representation of a currency
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,6 @@ exception statement from your version. */
 package java.util;
 
 import java.io.Serializable;
-import java.util.ResourceBundle;
-import java.util.Locale;
 import java.text.NumberFormat;
 
 public final class Currency implements Serializable
index fd6b658bcb77c243b5411866ddcc2e2ae6c9143f..dc1b112302cf3cddba4f190eec1bd0b5fcd9d301 100644 (file)
@@ -1,6 +1,6 @@
 /* HashMap.java -- a class providing a basic hashtable data structure,
    mapping Object --> Object
-   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -40,9 +40,9 @@ exception statement from your version. */
 package java.util;
 
 import java.io.IOException;
-import java.io.Serializable;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
+import java.io.Serializable;
 
 // NOTE: This implementation is very similar to that of Hashtable. If you fix
 // a bug in here, chances are you should make a similar change to the Hashtable
index 006db1e8603d40a58d7a58089e99a317b186d0a3..caad3ad16e74ca64d15c8f90af7123936dbbf2d6 100644 (file)
@@ -1,5 +1,5 @@
 /* HashSet.java -- a class providing a HashMap-backed Set
-   Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2001, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,9 +39,9 @@ exception statement from your version. */
 package java.util;
 
 import java.io.IOException;
-import java.io.Serializable;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
+import java.io.Serializable;
 
 /**
  * This class provides a HashMap-backed implementation of the Set interface.
index 698871b512490e0cc2746268351660cfa8eaf38d..3f5ae4c18c7f9f9b8da80c706afa9a017e57cdb8 100644 (file)
@@ -1,6 +1,6 @@
 /* Hashtable.java -- a class providing a basic hashtable data structure,
    mapping Object --> Object
-   Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,9 +39,9 @@ exception statement from your version. */
 package java.util;
 
 import java.io.IOException;
-import java.io.Serializable;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
+import java.io.Serializable;
 
 // NOTE: This implementation is very similar to that of HashMap. If you fix
 // a bug in here, chances are you should make a similar change to the HashMap
index c891f8230f086d2fdfa50cee05991ffe3022473d..4789a387ad536e82f1b9813c6cc7a75572d6d438 100644 (file)
@@ -1,5 +1,5 @@
 /* LinkedList.java -- Linked list implementation of the List interface
-   Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,10 +37,10 @@ exception statement from your version. */
 
 
 package java.util;
-import java.io.Serializable;
-import java.io.ObjectOutputStream;
-import java.io.ObjectInputStream;
 import java.io.IOException;
+import java.io.ObjectInputStream;
+import java.io.ObjectOutputStream;
+import java.io.Serializable;
 import java.lang.reflect.Array;
 
 /**
index 921d55c215077d012d4183bc2ef74934c944aca5..eac90e490fb6bd8d9418c81966177304ff74c6ff 100644 (file)
@@ -1,5 +1,5 @@
 /* Properties.java -- a set of persistent properties
-   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -38,14 +38,14 @@ exception statement from your version. */
 
 package java.util;
 
+import java.io.BufferedReader;
 import java.io.IOException;
 import java.io.InputStream;
-import java.io.BufferedReader;
 import java.io.InputStreamReader;
 import java.io.OutputStream;
-import java.io.PrintWriter;
-import java.io.PrintStream;
 import java.io.OutputStreamWriter;
+import java.io.PrintStream;
+import java.io.PrintWriter;
 
 /**
  * A set of persistent properties, which can be saved or loaded from a stream.
index 0d439d888a78af279ed6224e5c9e57605bf3fbd6..ec2ca7abab6b4e2937fa2cb1f4589b566dec55c4 100644 (file)
@@ -1,5 +1,5 @@
 /* PropertyPermission.java -- permission to get and set System properties
-   Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -38,13 +38,13 @@ exception statement from your version. */
 
 package java.util;
 
-import java.security.Permission;
-import java.security.BasicPermission;
-import java.security.PermissionCollection;
-import java.io.ObjectStreamField;
+import java.io.IOException;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
-import java.io.IOException;
+import java.io.ObjectStreamField;
+import java.security.BasicPermission;
+import java.security.Permission;
+import java.security.PermissionCollection;
 
 /**
  * This class represents the permission to access and modify a property.<br>
index 2636956527df0b70202c856f27a1ae7ea8db8f91..504d34e7ffa910784f365dcf3519dbfb4de50188 100644 (file)
@@ -1,5 +1,5 @@
 /* java.util.TimeZone
-   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
    Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
@@ -38,9 +38,10 @@ exception statement from your version. */
 
 
 package java.util;
-import java.text.DateFormatSymbols;
 import gnu.classpath.Configuration;
 
+import java.text.DateFormatSymbols;
+
 /**
  * This class represents a time zone offset and handles daylight savings.
  * 
index 9426a0bc7f5a4f2203df0667d71571c6cbddcd00..d3b67481511e433367d6bb681ae5e8bee9d5d509 100644 (file)
@@ -1,6 +1,6 @@
 /* TreeMap.java -- a class providing a basic Red-Black Tree data structure,
    mapping Object --> Object
-   Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,10 +39,10 @@ exception statement from your version. */
 
 package java.util;
 
-import java.io.Serializable;
-import java.io.ObjectOutputStream;
-import java.io.ObjectInputStream;
 import java.io.IOException;
+import java.io.ObjectInputStream;
+import java.io.ObjectOutputStream;
+import java.io.Serializable;
 
 /**
  * This class provides a red-black tree implementation of the SortedMap
index bd625d158dd9926a408de4db4879e70f286fe1ea..f38357082d3e7b46ef23f61ba788ca84c77c680c 100644 (file)
@@ -1,5 +1,5 @@
 /* TreeSet.java -- a class providing a TreeMap-backed SortedSet
-   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.
 
@@ -39,9 +39,9 @@ exception statement from your version. */
 package java.util;
 
 import java.io.IOException;
-import java.io.Serializable;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
+import java.io.Serializable;
 
 /**
  * This class provides a TreeMap-backed implementation of the SortedSet
index 9cf8639fc3b9ca47b292f49b169b7655417b3c84..d72788e3018783f17dcd0bc924f8d412323898d3 100644 (file)
@@ -1,5 +1,5 @@
 /* Vector.java -- Class that provides growable arrays.
-   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.
 
@@ -37,8 +37,8 @@ exception statement from your version. */
 
 
 package java.util;
-import java.lang.reflect.Array;
 import java.io.Serializable;
+import java.lang.reflect.Array;
 
 /**
  * The <code>Vector</code> classes implements growable arrays of Objects.
index 4cce821c5ff6d4418a47cfd60acbdcee10e0aba1..e76e4bac91f644c3f5c770da2af1332b1fe39db0 100644 (file)
@@ -1,6 +1,6 @@
 /* WeakHashMap -- a hashtable that keeps only weak references
    to its keys, allowing the virtual machine to reclaim them
-   Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -39,8 +39,8 @@ exception statement from your version. */
 
 package java.util;
 
-import java.lang.ref.WeakReference;
 import java.lang.ref.ReferenceQueue;
+import java.lang.ref.WeakReference;
 
 /**
  * A weak hash map has only weak references to the key. This means that it
index 394b51af6d0616ed45f16c1f8aeb399322d7ca44..070b3375d19cc64276921c76743bfdfebe6f15a9 100644 (file)
@@ -1,5 +1,5 @@
 /* JarFile.java - Representation of a jar file
-   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,14 +37,14 @@ exception statement from your version. */
 
 package java.util.jar;
 
-import java.util.zip.ZipEntry;
-import java.util.zip.ZipException;
-import java.util.zip.ZipFile;
 import java.io.File;
 import java.io.FileNotFoundException;
-import java.io.InputStream;
 import java.io.IOException;
+import java.io.InputStream;
 import java.util.Enumeration;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipException;
+import java.util.zip.ZipFile;
 
 /**
  * Representation of a jar file.
index daf935fa70a0cfee6d9153d99faf0931fc60e3b9..74649edbadbc07b5f2f7bb228d15ea8a2a923f98 100644 (file)
@@ -1,5 +1,5 @@
 /* JarInputStream.java - InputStream for reading jar files
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@ exception statement from your version. */
 
 package java.util.jar;
 
-import java.io.InputStream;
 import java.io.IOException;
+import java.io.InputStream;
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipInputStream;
 
index 19009999e91dfdecfb47329bdca808b2c07be797..217e245c7ff4a085d01514a8038721e8335f78cb 100644 (file)
@@ -1,5 +1,5 @@
 /* JarOutputStream.java - OutputStream for writing jar files
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@ exception statement from your version. */
 
 package java.util.jar;
 
-import java.io.OutputStream;
 import java.io.IOException;
+import java.io.OutputStream;
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipOutputStream;
 
index 9a153760ef8cbcc469a86ba0b456cb7bb6979e30..ddc201b45b5cebbfdb74d5448c23a6db6de773c6 100644 (file)
@@ -1,5 +1,5 @@
-/* Attributes.java -- Reads, writes and manipulaties jar manifest files
-   Copyright (C) 2000 Free Software Foundation, Inc.
+/* Manifest.java -- Reads, writes and manipulaties jar manifest files
+   Copyright (C) 2000, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -45,12 +45,9 @@ import java.io.InputStreamReader;
 import java.io.OutputStream;
 import java.io.OutputStreamWriter;
 import java.io.PrintWriter;
-import java.io.Reader;
-import java.io.Writer;
 import java.util.Hashtable;
 import java.util.Iterator;
 import java.util.Map;
-import java.util.Set;
 
 /**
  * Reads, writes and manipulaties jar manifest files.
index b9f61109d3b8032dcda178bb40dfc097e9137cd9..fe7afa25bcb5fbd556057eef3eaef9707b99baa9 100644 (file)
@@ -1,7 +1,7 @@
 /* FileHandler.java
    -- a class for publishing log messages to log files
 
-Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -41,9 +41,9 @@ exception statement from your version.
 
 package java.util.logging;
 
-import java.io.IOException;
 import java.io.File;
 import java.io.FileOutputStream;
+import java.io.IOException;
 
 /**
  * A <code>FileHandler</code> publishes log records to a set of log
index c4819695165a04b01a5cf89829b42b50aff2caf1..82753768f6903ece1bf434ed87510c4b300042c8 100644 (file)
@@ -2,7 +2,7 @@
    -- a class for formatting log messages by localizing message texts
       and performing substitution of parameters
 
-Copyright (C) 2002 Free Software Foundation, Inc.
+Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -43,8 +43,8 @@ exception statement from your version.
 
 package java.util.logging;
 
-import java.util.ResourceBundle;
 import java.text.MessageFormat;
+import java.util.ResourceBundle;
 
 /**
  * A <code>Formatter</code> supports handlers by localizing
index c0fb1cd653a7f2079732261666dfdb1fa6bc8612..f74ed0ec6c07409dc1815131aca360850b62c047 100644 (file)
@@ -1,7 +1,7 @@
 /* Handler.java
    -- a class for publishing log messages
 
-Copyright (C) 2002 Free Software Foundation, Inc.
+Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -43,7 +43,6 @@ exception statement from your version.
 package java.util.logging;
 
 import java.io.UnsupportedEncodingException;
-import java.security.AccessController;
 
 /**
  * A <code>Handler</code> publishes <code>LogRecords</code> to
index 3c194785c5fdb9f55ea58084dc5133302ef5dba0..b1e6ef5460e23e856582b415be13c7d90f37664a 100644 (file)
@@ -1,7 +1,7 @@
 /* Logger.java
    -- a class for logging messages
 
-Copyright (C) 2002 Free Software Foundation, Inc.
+Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -42,9 +42,9 @@ exception statement from your version.
 
 package java.util.logging;
 
-import java.util.ResourceBundle;
-import java.util.MissingResourceException;
 import java.util.List;
+import java.util.MissingResourceException;
+import java.util.ResourceBundle;
 
 /**
  * A Logger is used for logging information about events. Usually, there
index aece9d40596cb57a9fa7a2030081fb102ee0808f..023e9a7fb8971cc2d9c71c4fe59478cf601fe7af 100644 (file)
@@ -1,7 +1,7 @@
 /* SimpleFormatter.java
    -- a class for formatting log records into short human-readable messages
 
-Copyright (C) 2002 Free Software Foundation, Inc.
+Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -42,8 +42,8 @@ exception statement from your version.
 
 package java.util.logging;
 
-import java.util.Date;
 import java.text.DateFormat;
+import java.util.Date;
 
 /**
  * A <code>SimpleFormatter</code> formats log records into
index 2de6c73c8b0a00efd2833c3c263987481183e638..d8647177468b8676210ff850f93e10942e1d5d04 100644 (file)
@@ -1,7 +1,7 @@
 /* XMLFormatter.java
    -- a class for formatting log messages into a standard XML format
 
-Copyright (C) 2002 Free Software Foundation, Inc.
+Copyright (C) 2002, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -42,10 +42,9 @@ exception statement from your version.
 
 package java.util.logging;
 
+import java.text.SimpleDateFormat;
 import java.util.Date;
 import java.util.ResourceBundle;
-import java.text.MessageFormat;
-import java.text.SimpleDateFormat;
 
 /**
  * An <code>XMLFormatter</code> formats LogRecords into