aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/rmi/registry
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-10-21 20:14:03 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-10-21 20:14:03 +0000
commit02db0fc1ce50955172b5172a448bd0e9f5b70104 (patch)
treef61039e0c81e092cabdf543175687894df1fcca0 /libjava/java/rmi/registry
parentc28fdf712f5cbe81fb36e618f4fad9f79691be44 (diff)
downloadgcc-02db0fc1ce50955172b5172a448bd0e9f5b70104.zip
gcc-02db0fc1ce50955172b5172a448bd0e9f5b70104.tar.gz
gcc-02db0fc1ce50955172b5172a448bd0e9f5b70104.tar.bz2
MarshalledObject.java, [...]: Import cleanup.
2004-10-21 Michael Koch <konqueror@gmx.de> * java/rmi/MarshalledObject.java, java/rmi/Naming.java, java/rmi/activation/Activatable.java, java/rmi/activation/ActivationGroup.java, java/rmi/activation/ActivationGroupDesc.java, java/rmi/activation/ActivationInstantiator.java, java/rmi/activation/ActivationMonitor.java, java/rmi/activation/ActivationSystem.java, java/rmi/activation/Activator.java, java/rmi/registry/LocateRegistry.java, java/rmi/registry/Registry.java, java/rmi/server/LogStream.java, java/rmi/server/ObjID.java, java/rmi/server/RMIClientSocketFactory.java, java/rmi/server/RMIServerSocketFactory.java, java/rmi/server/RMISocketFactory.java, java/rmi/server/RemoteCall.java, java/rmi/server/RemoteServer.java, java/rmi/server/ServerRef.java, java/rmi/server/UID.java, java/rmi/server/UnicastRemoteObject.java: Import cleanup. From-SVN: r89396
Diffstat (limited to 'libjava/java/rmi/registry')
-rw-r--r--libjava/java/rmi/registry/LocateRegistry.java13
-rw-r--r--libjava/java/rmi/registry/Registry.java7
2 files changed, 11 insertions, 9 deletions
diff --git a/libjava/java/rmi/registry/LocateRegistry.java b/libjava/java/rmi/registry/LocateRegistry.java
index d3ccd8313..aaf9333 100644
--- a/libjava/java/rmi/registry/LocateRegistry.java
+++ b/libjava/java/rmi/registry/LocateRegistry.java
@@ -1,5 +1,5 @@
/* LocateRegistry.java --
- Copyright (c) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+ Copyright (c) 1996, 1997, 1998, 1999, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -35,18 +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.rmi.registry;
+import gnu.java.rmi.registry.RegistryImpl;
+import gnu.java.rmi.registry.RegistryImpl_Stub;
+import gnu.java.rmi.server.UnicastRef;
+
import java.rmi.RemoteException;
+import java.rmi.server.ObjID;
import java.rmi.server.RMIClientSocketFactory;
import java.rmi.server.RMIServerSocketFactory;
import java.rmi.server.RMISocketFactory;
import java.rmi.server.RemoteRef;
-import java.rmi.server.ObjID;
-
-import gnu.java.rmi.server.UnicastRef;
-import gnu.java.rmi.registry.RegistryImpl;
-import gnu.java.rmi.registry.RegistryImpl_Stub;
public final class LocateRegistry {
diff --git a/libjava/java/rmi/registry/Registry.java b/libjava/java/rmi/registry/Registry.java
index eaf2be9..46198b6 100644
--- a/libjava/java/rmi/registry/Registry.java
+++ b/libjava/java/rmi/registry/Registry.java
@@ -1,5 +1,5 @@
/* Registry.java --
- Copyright (c) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+ Copyright (c) 1996, 1997, 1998, 1999, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -35,13 +35,14 @@ 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.rmi.registry;
-import java.rmi.RemoteException;
-import java.rmi.NotBoundException;
import java.rmi.AccessException;
import java.rmi.AlreadyBoundException;
+import java.rmi.NotBoundException;
import java.rmi.Remote;
+import java.rmi.RemoteException;
public interface Registry extends Remote
{