diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-10-11 18:42:07 +0000 |
|---|---|---|
| committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-10-11 18:42:07 +0000 |
| commit | d5a87c2b1d8f556e3d0e01d1e24ffb48d7322cb0 (patch) | |
| tree | 5ebb7b9267c30c07655f7b2ef88990e63722626d /libjava/java/rmi/server/RemoteCall.java | |
| parent | 7afb0eea2b9144349fb41e0ae799abbeee2a2ca8 (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/RemoteCall.java')
| -rw-r--r-- | libjava/java/rmi/server/RemoteCall.java | 14 |
1 files changed, 7 insertions, 7 deletions
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; } |
