2003-06-27 Michael Koch <konqueror@gmx.de>
* java/rmi/server/SkeletonNotFoundException.java (SkeletonNotFoundException): Removed wrong @deprecated tag. * java/rmi/server/UnicastRemoteObject.java (exportObject): Made package-private. From-SVN: r68577
This commit is contained in:
parent
7e6ec0d8cc
commit
24ce2fe6cd
3 changed files with 11 additions and 4 deletions
|
@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
|
|||
obligated to do so. If you do not wish to do so, delete this
|
||||
exception statement from your version. */
|
||||
|
||||
|
||||
package java.rmi.server;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
|
@ -89,7 +90,7 @@ public static RemoteStub exportObject(Remote obj) throws RemoteException {
|
|||
return exportObject(obj, port, null);
|
||||
}
|
||||
|
||||
protected static Remote exportObject(Remote obj, int port, RMIServerSocketFactory ssf)
|
||||
static Remote exportObject(Remote obj, int port, RMIServerSocketFactory ssf)
|
||||
throws RemoteException
|
||||
{
|
||||
UnicastServerRef sref = null;
|
||||
|
@ -103,7 +104,7 @@ public static RemoteStub exportObject(Remote obj) throws RemoteException {
|
|||
}
|
||||
|
||||
/**
|
||||
* FIX ME
|
||||
* FIXME
|
||||
*/
|
||||
public static Remote exportObject(Remote obj, int port, RMIClientSocketFactory csf,
|
||||
RMIServerSocketFactory ssf)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue