Commit f507003a by Michael Koch Committed by Michael Koch

RMIC.java, [...]: Reworked import statements and fixed file headers.

2004-10-09  Michael Koch  <konqueror@gmx.de>

	* gnu/java/rmi/rmic/RMIC.java,
	gnu/java/rmi/server/RMIHashes.java,
	gnu/java/rmi/server/RMIObjectInputStream.java,
	gnu/java/rmi/server/UnicastConnection.java,
	gnu/java/rmi/server/UnicastConnectionManager.java,
	gnu/java/rmi/server/UnicastRemoteCall.java,
	gnu/java/rmi/server/UnicastServerRef.java:
	Reworked import statements and fixed file headers.

From-SVN: r88816
parent dafa8871
2004-10-09 Michael Koch <konqueror@gmx.de>
* gnu/java/rmi/rmic/RMIC.java,
gnu/java/rmi/server/RMIHashes.java,
gnu/java/rmi/server/RMIObjectInputStream.java,
gnu/java/rmi/server/UnicastConnection.java,
gnu/java/rmi/server/UnicastConnectionManager.java,
gnu/java/rmi/server/UnicastRemoteCall.java,
gnu/java/rmi/server/UnicastServerRef.java:
Reworked import statements and fixed file headers.
2004-10-04 Loren J. Rittle <ljrittle@acm.org> 2004-10-04 Loren J. Rittle <ljrittle@acm.org>
* configure.ac (*-*-freebsd[[1234]]*): Refine error message * configure.ac (*-*-freebsd[[1234]]*): Refine error message
......
/* /* RMIC.java --
Copyright (c) 1996, 1997, 1998, 1999, 2001, 2002, 2003 Free Software Foundation, Inc. Copyright (c) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004
Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -7,7 +8,7 @@ GNU Classpath is free software; you can redistribute it and/or modify ...@@ -7,7 +8,7 @@ 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 it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option) the Free Software Foundation; either version 2, or (at your option)
any later version. any later version.
GNU Classpath is distributed in the hope that it will be useful, but GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
...@@ -37,20 +38,19 @@ exception statement from your version. */ ...@@ -37,20 +38,19 @@ exception statement from your version. */
package gnu.java.rmi.rmic; package gnu.java.rmi.rmic;
import gnu.java.rmi.server.RMIHashes;
import java.io.File; import java.io.File;
import java.io.FileWriter; import java.io.FileWriter;
import java.io.PrintWriter;
import java.io.IOException; import java.io.IOException;
import java.io.PrintWriter;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
import java.rmi.RemoteException; import java.rmi.RemoteException;
import java.util.Arrays;
import java.util.HashSet; import java.util.HashSet;
import java.util.Iterator; import java.util.Iterator;
import java.util.Arrays;
import java.util.Set; import java.util.Set;
import gnu.java.rmi.server.RMIHashes;
public class RMIC { public class RMIC {
private String[] args; private String[] args;
......
...@@ -38,7 +38,6 @@ exception statement from your version. */ ...@@ -38,7 +38,6 @@ exception statement from your version. */
package gnu.java.rmi.server; package gnu.java.rmi.server;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.lang.Class;
import gnu.java.io.NullOutputStream; import gnu.java.io.NullOutputStream;
import gnu.java.lang.reflect.TypeSignature; import gnu.java.lang.reflect.TypeSignature;
import java.security.MessageDigest; import java.security.MessageDigest;
......
...@@ -41,11 +41,10 @@ import java.io.ObjectStreamClass; ...@@ -41,11 +41,10 @@ import java.io.ObjectStreamClass;
import java.io.ObjectInputStream; import java.io.ObjectInputStream;
import java.io.InputStream; import java.io.InputStream;
import java.io.IOException; import java.io.IOException;
import java.lang.reflect.Proxy;
import java.net.URL; import java.net.URL;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.rmi.server.RMIClassLoader; import java.rmi.server.RMIClassLoader;
import java.lang.ClassNotFoundException;
import java.lang.reflect.Proxy;
public class RMIObjectInputStream public class RMIObjectInputStream
extends ObjectInputStream { extends ObjectInputStream {
......
...@@ -37,9 +37,6 @@ exception statement from your version. */ ...@@ -37,9 +37,6 @@ exception statement from your version. */
package gnu.java.rmi.server; package gnu.java.rmi.server;
import java.lang.Runnable;
import java.net.Socket;
import java.net.ServerSocket;
import java.io.DataInputStream; import java.io.DataInputStream;
import java.io.DataOutputStream; import java.io.DataOutputStream;
import java.io.ObjectInputStream; import java.io.ObjectInputStream;
...@@ -49,6 +46,8 @@ import java.io.BufferedOutputStream; ...@@ -49,6 +46,8 @@ import java.io.BufferedOutputStream;
import java.io.ObjectOutput; import java.io.ObjectOutput;
import java.io.ObjectInput; import java.io.ObjectInput;
import java.io.IOException; import java.io.IOException;
import java.net.Socket;
import java.net.ServerSocket;
import java.rmi.RemoteException; import java.rmi.RemoteException;
public class UnicastConnection public class UnicastConnection
......
/* /* UnicastConnectionManager.java --
Copyright (c) 1996, 1997, 1998, 1999, 2002 Free Software Foundation, Inc. Copyright (c) 1996, 1997, 1998, 1999, 2002, 2004
Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -45,13 +46,10 @@ import java.io.IOException; ...@@ -45,13 +46,10 @@ import java.io.IOException;
import java.io.ObjectOutput; import java.io.ObjectOutput;
import java.io.ObjectInput; import java.io.ObjectInput;
import java.io.DataInputStream; import java.io.DataInputStream;
import java.lang.Thread;
import java.lang.Runnable;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.Socket; import java.net.Socket;
import java.net.ServerSocket; import java.net.ServerSocket;
import java.net.UnknownHostException; import java.net.UnknownHostException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.ConcurrentModificationException; import java.util.ConcurrentModificationException;
import java.util.Enumeration; import java.util.Enumeration;
......
...@@ -37,7 +37,6 @@ exception statement from your version. */ ...@@ -37,7 +37,6 @@ exception statement from your version. */
package gnu.java.rmi.server; package gnu.java.rmi.server;
import java.lang.Exception;
import java.io.DataInputStream; import java.io.DataInputStream;
import java.io.DataOutputStream; import java.io.DataOutputStream;
import java.io.IOException; import java.io.IOException;
......
/* /* UnicastServerRef.java --
Copyright (c) 1996, 1997, 1998, 1999, 2002, 2003 Free Software Foundation, Inc. Copyright (c) 1996, 1997, 1998, 1999, 2002, 2003, 2004
Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -57,8 +58,6 @@ import java.rmi.server.RemoteCall; ...@@ -57,8 +58,6 @@ import java.rmi.server.RemoteCall;
import java.lang.reflect.Constructor; import java.lang.reflect.Constructor;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.lang.Thread;
import java.lang.Exception;
import java.io.IOException; import java.io.IOException;
import java.io.DataInputStream; import java.io.DataInputStream;
import java.io.DataOutputStream; import java.io.DataOutputStream;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment