CheckedInputStream.java, [...]: Import cleanups.

2004-11-06  Michael Koch  <konqueror@gmx.de>

        * java/util/zip/CheckedInputStream.java,
        java/util/zip/InflaterInputStream.java,
        java/util/zip/ZipFile.java,
        java/util/zip/ZipInputStream.java:
        Import cleanups.

From-SVN: r90220
This commit is contained in:
Michael Koch 2004-11-07 01:25:48 +00:00 committed by Mark Wielaard
parent cc0b9d525c
commit d56ab5d287
5 changed files with 19 additions and 9 deletions

View File

@ -1,3 +1,11 @@
2004-11-06 Michael Koch <konqueror@gmx.de>
* java/util/zip/CheckedInputStream.java,
java/util/zip/InflaterInputStream.java,
java/util/zip/ZipFile.java,
java/util/zip/ZipInputStream.java:
Import cleanups.
2004-11-06 Tom Tromey <tromey@redhat.com> 2004-11-06 Tom Tromey <tromey@redhat.com>
* gnu/java/rmi/server/UnicastConnectionManager.java (clients): Now * gnu/java/rmi/server/UnicastConnectionManager.java (clients): Now

View File

@ -1,5 +1,5 @@
/* CheckedInputStream.java - Compute checksum of data being read /* CheckedInputStream.java - Compute checksum of data being read
Copyright (C) 1999, 2000 Free Software Foundation, Inc. Copyright (C) 1999, 2000, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -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 obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */ exception statement from your version. */
package java.util.zip; package java.util.zip;
import java.io.FilterInputStream; import java.io.FilterInputStream;
import java.io.InputStream;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream;
/* Written using on-line Java Platform 1.2 API Specification /* Written using on-line Java Platform 1.2 API Specification
* and JCL book. * and JCL book.

View File

@ -36,11 +36,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 obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */ exception statement from your version. */
package java.util.zip; package java.util.zip;
import java.io.FilterInputStream; import java.io.FilterInputStream;
import java.io.InputStream;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream;
/** /**
* This filter stream is used to decompress data compressed in the "deflate" * This filter stream is used to decompress data compressed in the "deflate"

View File

@ -1,5 +1,5 @@
/* java.util.zip.ZipFile /* ZipFile.java --
Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -42,8 +42,8 @@ import java.io.BufferedInputStream;
import java.io.DataInput; import java.io.DataInput;
import java.io.EOFException; import java.io.EOFException;
import java.io.File; import java.io.File;
import java.io.InputStream;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream;
import java.io.RandomAccessFile; import java.io.RandomAccessFile;
import java.util.Enumeration; import java.util.Enumeration;
import java.util.HashMap; import java.util.HashMap;

View File

@ -1,5 +1,5 @@
/* java.util.zip.ZipInputStream /* ZipInputStream.java --
Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
@ -39,8 +39,8 @@ exception statement from your version. */
package java.util.zip; package java.util.zip;
import java.io.EOFException; import java.io.EOFException;
import java.io.InputStream;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream;
/** /**
* This is a FilterInputStream that reads the files in an zip archive * This is a FilterInputStream that reads the files in an zip archive