From d5a87c2b1d8f556e3d0e01d1e24ffb48d7322cb0 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sat, 11 Oct 2003 18:42:07 +0000 Subject: ActivationInstantiator.java, [...]: Removed redundant modifiers. 2003-10-11 Michael Koch * java/rmi/activation/ActivationInstantiator.java, java/rmi/activation/ActivationMonitor.java, java/rmi/activation/ActivationSystem.java, java/rmi/activation/Activator.java, java/rmi/dgc/DGC.java, java/rmi/registry/Registry.java, java/rmi/registry/RegistryHandler.java, java/rmi/server/LoaderHandler.java, java/rmi/server/RMIClientSocketFactory.java, java/rmi/server/RMIFailureHandler.java, java/rmi/server/RMIServerSocketFactory.java, java/rmi/server/RemoteCall.java, java/rmi/server/RemoteRef.java, java/rmi/server/ServerRef.java, java/rmi/server/Skeleton.java, java/rmi/server/Unreferenced.java: Removed redundant modifiers. From-SVN: r72354 --- libjava/java/rmi/server/RemoteRef.java | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'libjava/java/rmi/server/RemoteRef.java') diff --git a/libjava/java/rmi/server/RemoteRef.java b/libjava/java/rmi/server/RemoteRef.java index c9abfd67242..10168690dc0 100644 --- a/libjava/java/rmi/server/RemoteRef.java +++ b/libjava/java/rmi/server/RemoteRef.java @@ -45,35 +45,34 @@ import java.io.ObjectOutput; public interface RemoteRef extends Externalizable { - public static final long serialVersionUID = 0; + long serialVersionUID = 0; - public static final String packagePrefix = "gnu.java.rmi.server"; + String packagePrefix = "gnu.java.rmi.server"; /** * @deprecated */ - public void invoke(RemoteCall call) throws Exception; + void invoke (RemoteCall call) throws Exception; - public Object invoke (Remote obj, Method method, Object[] params, long opnum) + Object invoke (Remote obj, Method method, Object[] params, long opnum) throws Exception; /** * @deprecated */ - public RemoteCall newCall (RemoteObject obj, Operation[] op, int opnum, - long hash) + RemoteCall newCall (RemoteObject obj, Operation[] op, int opnum, long hash) throws RemoteException; /** * @deprecated */ - public void done (RemoteCall call) throws RemoteException; + void done (RemoteCall call) throws RemoteException; - public boolean remoteEquals (RemoteRef ref); + boolean remoteEquals (RemoteRef ref); - public int remoteHashCode (); + int remoteHashCode(); - public String getRefClass (ObjectOutput out); + String getRefClass (ObjectOutput out); - public String remoteToString (); + String remoteToString(); } -- cgit v1.2.3