summaryrefslogtreecommitdiff
path: root/libjava/java/rmi/server/RemoteCall.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/rmi/server/RemoteCall.java')
-rw-r--r--libjava/java/rmi/server/RemoteCall.java14
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;
}