diff options
Diffstat (limited to 'java/src/Ice/ObjectAdapterI.java')
-rw-r--r-- | java/src/Ice/ObjectAdapterI.java | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/java/src/Ice/ObjectAdapterI.java b/java/src/Ice/ObjectAdapterI.java index bbd0daded4f..ec9ed91ad38 100644 --- a/java/src/Ice/ObjectAdapterI.java +++ b/java/src/Ice/ObjectAdapterI.java @@ -417,22 +417,15 @@ public final class ObjectAdapterI extends LocalObjectImpl implements ObjectAdapt } public synchronized ObjectPrx - createReverseProxy(Identity ident, TransportInfo transport) + createReverseProxy(Identity ident) { checkForDeactivation(); checkIdentity(ident); - // - // Create a reference and return a reverse proxy for this - // reference. - // - IceInternal.Endpoint[] endpoints = new IceInternal.Endpoint[0]; - IceInternal.Reference ref = - _instance.referenceFactory().create(ident, new java.util.HashMap(), "", - IceInternal.Reference.ModeTwoway, false, - "", endpoints, null, null, this, true); + // TODO + assert(false); - return _instance.proxyFactory().referenceToProxy(ref); + return null; } public synchronized void |