diff options
Diffstat (limited to 'java/src/IceInternal/CommunicatorObserverI.java')
-rw-r--r-- | java/src/IceInternal/CommunicatorObserverI.java | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/java/src/IceInternal/CommunicatorObserverI.java b/java/src/IceInternal/CommunicatorObserverI.java index 49858cfc5d3..a8f1c68b08f 100644 --- a/java/src/IceInternal/CommunicatorObserverI.java +++ b/java/src/IceInternal/CommunicatorObserverI.java @@ -23,8 +23,6 @@ public class CommunicatorObserverI implements Ice.Instrumentation.CommunicatorOb r.add("endpointType", cl.getDeclaredMethod("getEndpointInfo"), cli.getDeclaredMethod("type")); r.add("endpointIsDatagram", cl.getDeclaredMethod("getEndpointInfo"), cli.getDeclaredMethod("datagram")); r.add("endpointIsSecure", cl.getDeclaredMethod("getEndpointInfo"), cli.getDeclaredMethod("secure")); - r.add("endpointProtocolVersion", cl.getDeclaredMethod("getEndpointProtocolVersion")); - r.add("endpointEncodingVersion", cl.getDeclaredMethod("getEndpointEncodingVersion")); r.add("endpointTimeout", cl.getDeclaredMethod("getEndpointInfo"), cli.getDeclaredField("timeout")); r.add("endpointCompress", cl.getDeclaredMethod("getEndpointInfo"), cli.getDeclaredField("compress")); @@ -165,18 +163,6 @@ public class CommunicatorObserverI implements Ice.Instrumentation.CommunicatorOb return _endpointInfo; } - public String - getEndpointEncodingVersion() - { - return Ice.Util.encodingVersionToString(getEndpointInfo().encoding); - } - - public String - getEndpointProtocolVersion() - { - return Ice.Util.protocolVersionToString(getEndpointInfo().protocol); - } - private final Ice.ConnectionInfo _connectionInfo; private final Ice.Endpoint _endpoint; private final Ice.Instrumentation.ConnectionState _state; @@ -287,18 +273,6 @@ public class CommunicatorObserverI implements Ice.Instrumentation.CommunicatorOb return _endpointInfo; } - public String - getEndpointEncodingVersion() - { - return Ice.Util.encodingVersionToString(getEndpointInfo().encoding); - } - - public String - getEndpointProtocolVersion() - { - return Ice.Util.protocolVersionToString(getEndpointInfo().protocol); - } - public Ice.Current getCurrent() { @@ -562,18 +536,6 @@ public class CommunicatorObserverI implements Ice.Instrumentation.CommunicatorOb } public String - getEndpointEncodingVersion() - { - return Ice.Util.encodingVersionToString(getEndpointInfo().encoding); - } - - public String - getEndpointProtocolVersion() - { - return Ice.Util.protocolVersionToString(getEndpointInfo().protocol); - } - - public String getParent() { return "Communicator"; |