diff options
Diffstat (limited to 'libjava/java/rmi/registry/Registry.java')
-rw-r--r-- | libjava/java/rmi/registry/Registry.java | 7 |
1 files changed, 4 insertions, 3 deletions
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 { |