summaryrefslogtreecommitdiff
path: root/libjava/java/rmi/server/RemoteRef.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-10-11 18:42:07 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-10-11 18:42:07 +0000
commitd5a87c2b1d8f556e3d0e01d1e24ffb48d7322cb0 (patch)
tree5ebb7b9267c30c07655f7b2ef88990e63722626d /libjava/java/rmi/server/RemoteRef.java
parent7afb0eea2b9144349fb41e0ae799abbeee2a2ca8 (diff)
ActivationInstantiator.java, [...]: Removed redundant modifiers.
2003-10-11 Michael Koch <konqueror@gmx.de> * 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
Diffstat (limited to 'libjava/java/rmi/server/RemoteRef.java')
-rw-r--r--libjava/java/rmi/server/RemoteRef.java21
1 files changed, 10 insertions, 11 deletions
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();
}