diff options
Diffstat (limited to 'libjava/classpath/java/rmi/activation/Activatable.java')
-rw-r--r-- | libjava/classpath/java/rmi/activation/Activatable.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/classpath/java/rmi/activation/Activatable.java b/libjava/classpath/java/rmi/activation/Activatable.java index 472c65c1110..0f201cacf63 100644 --- a/libjava/classpath/java/rmi/activation/Activatable.java +++ b/libjava/classpath/java/rmi/activation/Activatable.java @@ -103,7 +103,7 @@ public abstract class Activatable * @throws ActivationException if the activation failed * @throws RemoteException if the remote call failed. */ - protected Activatable(String codebase, MarshalledObject data, + protected Activatable(String codebase, MarshalledObject<?> data, boolean restart, int port) throws ActivationException, RemoteException { @@ -133,7 +133,7 @@ public abstract class Activatable * @throws ActivationException if the activation failed * @throws RemoteException if the remote call failed. */ - protected Activatable(String codebase, MarshalledObject data, + protected Activatable(String codebase, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws ActivationException, RemoteException @@ -314,7 +314,7 @@ public abstract class Activatable * @throws RemoteException if the registration or export fails */ public static ActivationID exportObject(Remote obj, String location, - MarshalledObject data, + MarshalledObject<?> data, boolean restart, int port) throws ActivationException, RemoteException { |