VMID.java, [...]: Reformatted.

2003-03-31  Michael Koch  <konqueror@gmx.de>

	* java/rmi/dgc/VMID.java,
	java/rmi/registry/RegistryHandler.java,
	java/rmi/server/LogStream.java,
	java/rmi/server/Operation.java,
	java/rmi/server/RemoteCall.java,
	java/rmi/server/RemoteRef.java,
	java/rmi/server/RemoteStub.java:
	Reformatted.

From-SVN: r65078
This commit is contained in:
Michael Koch 2003-03-31 06:32:37 +00:00 committed by Michael Koch
parent 2ce0d0b097
commit 60c98fd611
8 changed files with 193 additions and 141 deletions

View file

@ -43,12 +43,16 @@ import java.rmi.UnknownHostException;
/**
* @deprecated
*/
public interface RegistryHandler {
/** @deprecated */
public Registry registryStub(String host, int port) throws RemoteException, UnknownHostException;
/** @deprecated */
public Registry registryImpl(int port) throws RemoteException;
public interface RegistryHandler
{
/**
* @deprecated
*/
public Registry registryStub (String host, int port)
throws RemoteException, UnknownHostException;
/**
* @deprecated
*/
public Registry registryImpl (int port) throws RemoteException;
}