Connection.java, [...]: Reorganized import statements.

2005-04-20  Michael Koch  <konqueror@gmx.de>

	* gnu/java/net/protocol/file/Connection.java,
	gnu/java/net/protocol/jar/Connection.java:
	Reorganized import statements. Fixed @author tags.

From-SVN: r98450
This commit is contained in:
Michael Koch 2005-04-20 09:25:25 +00:00 committed by Michael Koch
parent 2e2082d864
commit b5293f35ad
3 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2005-04-20 Michael Koch <konqueror@gmx.de>
* gnu/java/net/protocol/file/Connection.java,
gnu/java/net/protocol/jar/Connection.java:
Reorganized import statements. Fixed @author tags.
2005-04-20 Chris Burdess <dog@gnu.org>
* java/io/DataOutputStream.java (writeUTF): Use block write for

View File

@ -33,7 +33,7 @@ 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. */
exception statement from your version. */
package gnu.java.net.protocol.file;
@ -46,8 +46,8 @@ import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FilePermission;
import java.io.InputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.ProtocolException;
import java.net.URL;
@ -62,9 +62,9 @@ import java.util.Locale;
* This subclass of java.net.URLConnection models a URLConnection via
* the "file" protocol.
*
* @author Aaron M. Renn <arenn@urbanophile.com>
* @author Nic Ferrier <nferrier@tapsellferrier.co.uk>
* @author Warren Levy <warrenl@cygnus.com>
* @author Aaron M. Renn (arenn@urbanophile.com)
* @author Nic Ferrier (nferrier@tapsellferrier.co.uk)
* @author Warren Levy (warrenl@cygnus.com)
*/
public class Connection extends URLConnection
{

View File

@ -42,8 +42,8 @@ import java.io.BufferedInputStream;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.JarURLConnection;
import java.net.MalformedURLException;
import java.net.ProtocolException;
@ -64,7 +64,7 @@ import java.util.zip.ZipFile;
* This subclass of java.net.JarURLConnection models a URLConnection via
* the "jar" protocol.
*
* @author Kresten Krab Thorup <krab@gnu.org>
* @author Kresten Krab Thorup (krab@gnu.org)
*/
public final class Connection extends JarURLConnection
{