diff options
Diffstat (limited to 'libjava/java/rmi/server/RemoteRef.java')
| -rw-r--r-- | libjava/java/rmi/server/RemoteRef.java | 21 |
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(); } |
