Timestamp.java, [...]: Reorganized imports and fixed copyright headers.
authorMichael Koch <konqueror@gmx.de>
Wed, 20 Oct 2004 08:09:27 +0000 (08:09 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Wed, 20 Oct 2004 08:09:27 +0000 (08:09 +0000)
2004-10-20  Michael Koch  <konqueror@gmx.de>

* java/sql/Timestamp.java,
java/text/AttributedCharacterIterator.java,
java/text/AttributedString.java,
java/util/zip/CheckedOutputStream.java,
java/util/zip/DeflaterOutputStream.java,
java/util/zip/ZipFile.java,
javax/crypto/Cipher.java,
javax/crypto/ExemptionMechanismException.java,
javax/crypto/SecretKey.java,
javax/crypto/SecretKeyFactory.java,
javax/naming/directory/ModificationItem.java,
javax/naming/directory/SearchControls.java,
javax/naming/event/NamingListener.java,
javax/naming/ldap/Control.java,
javax/naming/ldap/ExtendedResponse.java,
javax/net/ssl/SSLSocketFactory.java:
Reorganized imports and fixed copyright headers.

From-SVN: r89324

17 files changed:
libjava/ChangeLog
libjava/java/sql/Timestamp.java
libjava/java/text/AttributedCharacterIterator.java
libjava/java/text/AttributedString.java
libjava/java/util/zip/CheckedOutputStream.java
libjava/java/util/zip/DeflaterOutputStream.java
libjava/java/util/zip/ZipFile.java
libjava/javax/crypto/Cipher.java
libjava/javax/crypto/ExemptionMechanismException.java
libjava/javax/crypto/SecretKey.java
libjava/javax/crypto/SecretKeyFactory.java
libjava/javax/naming/directory/ModificationItem.java
libjava/javax/naming/directory/SearchControls.java
libjava/javax/naming/event/NamingListener.java
libjava/javax/naming/ldap/Control.java
libjava/javax/naming/ldap/ExtendedResponse.java
libjava/javax/net/ssl/SSLSocketFactory.java

index 70ec77ab313f0c66e402c072505685b32c646f79..840bf74813fa51b096e80a9c05bd34616dddde81 100644 (file)
@@ -1,3 +1,23 @@
+2004-10-20  Michael Koch  <konqueror@gmx.de>
+
+       * java/sql/Timestamp.java,
+       java/text/AttributedCharacterIterator.java,
+       java/text/AttributedString.java,
+       java/util/zip/CheckedOutputStream.java,
+       java/util/zip/DeflaterOutputStream.java,
+       java/util/zip/ZipFile.java,
+       javax/crypto/Cipher.java,
+       javax/crypto/ExemptionMechanismException.java,
+       javax/crypto/SecretKey.java,
+       javax/crypto/SecretKeyFactory.java,
+       javax/naming/directory/ModificationItem.java,
+       javax/naming/directory/SearchControls.java,
+       javax/naming/event/NamingListener.java,
+       javax/naming/ldap/Control.java,
+       javax/naming/ldap/ExtendedResponse.java,
+       javax/net/ssl/SSLSocketFactory.java:
+       Reorganized imports and fixed copyright headers.
+
 2004-10-20  Michael Koch  <konqueror@gmx.de>
 
        * java/util/logging/ConsoleHandler.java,
index b791ca1e0f2e61fbf0bdce82f24986eea73dd49e..501810054f29e0a38a68689cc7a9e49fa7e08fc7 100644 (file)
@@ -1,5 +1,5 @@
 /* Time.java -- Wrapper around java.util.Date
-   Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2003, 2004  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -38,8 +38,8 @@ exception statement from your version. */
 
 package java.sql;
 
-import java.text.ParseException;
 import java.text.DecimalFormat;
+import java.text.ParseException;
 import java.text.SimpleDateFormat;
 
 /**
index c1366adc4ad50845b3c191275f932ac70f6226ec..3bcf1d05aa3f26bdf2768d38dcedc68c22a20414 100644 (file)
@@ -38,10 +38,10 @@ exception statement from your version. */
 
 package java.text;
 
-import java.io.Serializable;
 import java.io.InvalidObjectException;
-import java.util.Set;
+import java.io.Serializable;
 import java.util.Map;
+import java.util.Set;
 
 /**
  * This interface extends the <code>CharacterIterator</code> interface
index 41512dc6c5e62e29ace0464a3ec8c9e1d6784316..752b376819072a805b13c64fc9b7d0b871756484 100644 (file)
@@ -38,8 +38,8 @@ exception statement from your version. */
 
 package java.text;
 
-import java.util.Arrays;
 import java.util.ArrayList;
+import java.util.Arrays;
 import java.util.HashMap;
 import java.util.Hashtable;
 import java.util.Iterator;
index 266a369235155509cbe4050c86dca56e6fc55221..0f22b21cbfa22ab80d417b77b5cba4cf3ae79373 100644 (file)
@@ -35,11 +35,12 @@ this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version. */
 
+
 package java.util.zip;
 
 import java.io.FilterOutputStream;
-import java.io.OutputStream;
 import java.io.IOException;
+import java.io.OutputStream;
 
 /* Written using on-line Java Platform 1.2 API Specification
  * and JCL book.
index 7ae7d193acdc83b8fa7ae6f9a9f7131a2a84cba7..4d84f2a3f57b9020d28962f9e75efc7dd28f2ee1 100644 (file)
@@ -35,11 +35,12 @@ this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version. */
 
+
 package java.util.zip;
 
 import java.io.FilterOutputStream;
-import java.io.OutputStream;
 import java.io.IOException;
+import java.io.OutputStream;
 
 /* Written using on-line Java Platform 1.2 API Specification
  * and JCL book.
index 25b5785432a29f538a5533860d98e46a7a6d64c5..1f9ab5ed5eefab8a948aa2951be937bc22859f68 100644 (file)
@@ -35,19 +35,19 @@ this exception to your version of the library, but you are not
 obligated to do so.  If you do not wish to do so, delete this
 exception statement from your version. */
 
+
 package java.util.zip;
 
 import java.io.BufferedInputStream;
 import java.io.DataInput;
+import java.io.EOFException;
 import java.io.File;
 import java.io.InputStream;
 import java.io.IOException;
-import java.io.EOFException;
 import java.io.RandomAccessFile;
 import java.util.Enumeration;
 import java.util.HashMap;
 import java.util.Iterator;
-import java.util.NoSuchElementException;
 
 /**
  * This class represents a Zip archive.  You can ask for the contained
index d768d6ad7d3735790a5baf3d1fad98ad1561389d..af7f2f244194a83545cefff214146317114f12cf 100644 (file)
@@ -51,7 +51,6 @@ import java.security.cert.Certificate;
 import java.security.cert.X509Certificate;
 import java.security.spec.AlgorithmParameterSpec;
 
-import java.util.Enumeration;
 import java.util.StringTokenizer;
 
 import gnu.java.security.Engine;
index 42e1c5e9b771c31c4f2f23cfe2a1122a9444ecc9..2c0665dc8155ee5a4476d6714aeaa32b6aa3e5ed 100644 (file)
@@ -1,25 +1,22 @@
 /* ExemptionMechanismException -- An error in an exemption mechanism.
    Copyright (C) 2004  Free Software Foundation, Inc.
 
-This file is part of GNU Classpath.
+This file is part of GNU Classpath.
 
 GNU Classpath is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or (at
-your option) any later version.
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
 
 GNU Classpath is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 
-You should have received a copy of the GNU General Public License along
-with GNU Classpath; if not, write to the
-
-   Free Software Foundation, Inc.,
-   59 Temple Place, Suite 330,
-   Boston, MA  02111-1307
-   USA
+You should have received a copy of the GNU General Public License
+along with GNU Classpath; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307 USA.
 
 Linking this library statically or dynamically with other modules is
 making a combined work based on this library.  Thus, the terms and
@@ -29,14 +26,14 @@ combination.
 As a special exception, the copyright holders of this library give you
 permission to link this library with independent modules to produce an
 executable, regardless of the license terms of these independent
-modules, and to copy and distribute the resulting executable under terms
-of your choice, provided that you also meet, for each linked independent
-module, the terms and conditions of the license of that module.  An
-independent module is a module which is not derived from or based on
-this library.  If you modify this library, you may extend this exception
-to your version of the library, but you are not obligated to do so.  If
-you do not wish to do so, delete this exception statement from your
-version.  */
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version. */
 
 
 package javax.crypto;
index 85529b94de2af5c812aa60a09baa41fe1c24228a..ce7057e7092d91fa6d735674c61c5f4f5b6b39ad 100644 (file)
@@ -1,25 +1,22 @@
 /* SecretKey.java -- A key for symmetric cryptography.
    Copyright (C) 2004  Free Software Foundation, Inc.
 
-This file is part of GNU Classpath.
+This file is part of GNU Classpath.
 
 GNU Classpath is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or (at
-your option) any later version.
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
 
 GNU Classpath is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 
-You should have received a copy of the GNU General Public License along
-with GNU Classpath; if not, write to the
-
-   Free Software Foundation, Inc.,
-   59 Temple Place, Suite 330,
-   Boston, MA  02111-1307
-   USA
+You should have received a copy of the GNU General Public License
+along with GNU Classpath; see the file COPYING.  If not, write to the
+Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
+02111-1307 USA.
 
 Linking this library statically or dynamically with other modules is
 making a combined work based on this library.  Thus, the terms and
@@ -29,14 +26,14 @@ combination.
 As a special exception, the copyright holders of this library give you
 permission to link this library with independent modules to produce an
 executable, regardless of the license terms of these independent
-modules, and to copy and distribute the resulting executable under terms
-of your choice, provided that you also meet, for each linked independent
-module, the terms and conditions of the license of that module.  An
-independent module is a module which is not derived from or based on
-this library.  If you modify this library, you may extend this exception
-to your version of the library, but you are not obligated to do so.  If
-you do not wish to do so, delete this exception statement from your
-version.  */
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module.  An independent module is a module which is not derived from
+or based on this library.  If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so.  If you do not wish to do so, delete this
+exception statement from your version. */
 
 
 package javax.crypto;
index 92f18ec66599238ce2b5ca7e2a72ece4fa227949..d12e1b582e9b1d8b86f40b4c2e0a79bd1279bda9 100644 (file)
@@ -44,7 +44,6 @@ import java.security.InvalidKeyException;
 import java.security.NoSuchAlgorithmException;
 import java.security.NoSuchProviderException;
 import java.security.Provider;
-import java.security.SecureRandom;
 import java.security.Security;
 import java.security.spec.KeySpec;
 import java.security.spec.InvalidKeySpecException;
index b32fd6f7aa50f3212240ba4538326e29277d0469..6b9127df8f085d87fde8fdba0f5fed7c4e35b060 100644 (file)
@@ -37,6 +37,7 @@ exception statement from your version. */
 
 
 package javax.naming.directory;
+
 import java.io.Serializable;
  
 /**
index 2b040d91fff8e878610048758b21127b3ee07421..0bccb357f946efede0bb776f66e812ec0aad881b 100644 (file)
@@ -37,6 +37,7 @@ exception statement from your version. */
 
 
 package javax.naming.directory;
+
 import java.io.Serializable;
  
 /**
index 4a11c9f89c55a9432fc154933b07042a83bb41f9..d75dd5b93167e6ce5b8ffe1098225e2611226121 100644 (file)
@@ -37,6 +37,7 @@ exception statement from your version. */
 
 
 package javax.naming.event;
+
 import java.util.EventListener;
  
 /**
index ee29e586b7c4836f3a742614fc3f92644b701c01..20ccafebe5e592844a653fcbf60f56403767fc96 100644 (file)
@@ -37,6 +37,7 @@ exception statement from your version. */
 
 
 package javax.naming.ldap;
+
 import java.io.Serializable;
  
 /**
index d22e2274e6e9ebe5285bb812bcb50183ff8f23ac..4815ad9ab22c057dbe3fe44310c0582726086d56 100644 (file)
@@ -37,6 +37,7 @@ exception statement from your version. */
 
 
 package javax.naming.ldap;
+
 import java.io.Serializable;
  
 /**
index 181ab18a1d2dae51df4f7d798ededccacaea7791..3532164168b45157bbdb75fca4418cbeecc6a38a 100644 (file)
@@ -40,9 +40,7 @@ package javax.net.ssl;
 
 import java.io.IOException;
 import java.net.Socket;
-import java.security.AccessController;
 import java.security.KeyStore;
-import java.security.PrivilegedAction;
 import java.security.Security;
 import javax.net.SocketFactory;