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
This commit is contained in:
Michael Koch 2003-10-11 18:42:07 +00:00 committed by Michael Koch
parent 7afb0eea2b
commit d5a87c2b1d
17 changed files with 114 additions and 78 deletions

View file

@ -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();
}