diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-05-02 03:27:07 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-05-02 03:27:07 +0000 |
commit | 5f342d668a30647b7d7182b4b296e65f7cfc2b07 (patch) | |
tree | 53f13aa7e79a77da4ca6133cf170812d3995d8b2 /java/src/IceInternal/ReferenceFactory.java | |
parent | adding assertions (diff) | |
download | ice-5f342d668a30647b7d7182b4b296e65f7cfc2b07.tar.bz2 ice-5f342d668a30647b7d7182b4b296e65f7cfc2b07.tar.xz ice-5f342d668a30647b7d7182b4b296e65f7cfc2b07.zip |
align with C++ changes for thread pool, properties, plug-ins
Diffstat (limited to 'java/src/IceInternal/ReferenceFactory.java')
-rw-r--r-- | java/src/IceInternal/ReferenceFactory.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/IceInternal/ReferenceFactory.java b/java/src/IceInternal/ReferenceFactory.java index 7522ae752eb..ddf84364c79 100644 --- a/java/src/IceInternal/ReferenceFactory.java +++ b/java/src/IceInternal/ReferenceFactory.java @@ -225,7 +225,7 @@ public final class ReferenceFactory } String es = s.substring(beg, end); - Endpoint endp = Endpoint.endpointFromString(_instance, es); + Endpoint endp = _instance.endpointFactoryManager().create(es); if (orig) { @@ -281,7 +281,7 @@ public final class ReferenceFactory origEndpoints = new Endpoint[sz]; for (int i = 0; i < sz; i++) { - origEndpoints[i] = Endpoint.streamRead(s); + origEndpoints[i] = _instance.endpointFactoryManager().read(s); } boolean same = s.readBool(); @@ -295,7 +295,7 @@ public final class ReferenceFactory endpoints = new Endpoint[sz]; for (int i = 0; i < sz; i++) { - endpoints[i] = Endpoint.streamRead(s); + endpoints[i] = _instance.endpointFactoryManager().read(s); } } |