From 4f2d361a74cbb3518b299a7dc61ff88b01894fd3 Mon Sep 17 00:00:00 2001 From: mkoch Date: Sat, 11 Oct 2003 18:42:07 +0000 Subject: 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72354 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/rmi/server/RemoteCall.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libjava/java/rmi/server/RemoteCall.java') diff --git a/libjava/java/rmi/server/RemoteCall.java b/libjava/java/rmi/server/RemoteCall.java index bccbaf1be15..c244d6e94f8 100644 --- a/libjava/java/rmi/server/RemoteCall.java +++ b/libjava/java/rmi/server/RemoteCall.java @@ -51,36 +51,36 @@ public interface RemoteCall /** * @deprecated */ - public ObjectOutput getOutputStream () throws IOException; + ObjectOutput getOutputStream () throws IOException; /** * @deprecated */ - public void releaseOutputStream () throws IOException; + void releaseOutputStream () throws IOException; /** * @deprecated */ - public ObjectInput getInputStream () throws IOException; + ObjectInput getInputStream () throws IOException; /** * @deprecated */ - public void releaseInputStream () throws IOException; + void releaseInputStream () throws IOException; /** * @deprecated */ - public ObjectOutput getResultStream (boolean success) + ObjectOutput getResultStream (boolean success) throws IOException, StreamCorruptedException; /** * @deprecated */ - public void executeCall () throws Exception; + void executeCall () throws Exception; /** * @deprecated */ - public void done () throws IOException; + void done () throws IOException; } -- cgit v1.2.1