summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/OutgoingConnectionFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceInternal/OutgoingConnectionFactory.java')
-rw-r--r--java/src/IceInternal/OutgoingConnectionFactory.java16
1 files changed, 1 insertions, 15 deletions
diff --git a/java/src/IceInternal/OutgoingConnectionFactory.java b/java/src/IceInternal/OutgoingConnectionFactory.java
index 53a1abbfc90..f9e5a50b57a 100644
--- a/java/src/IceInternal/OutgoingConnectionFactory.java
+++ b/java/src/IceInternal/OutgoingConnectionFactory.java
@@ -28,20 +28,6 @@ public final class OutgoingConnectionFactory
list.add(value);
}
- /*
- public void
- removeElementWithValue(K key, V value)
- {
- java.util.List<V> list = this.get(key);
- assert(list != null);
- list.remove(value);
- if(list.isEmpty())
- {
- this.remove(key);
- }
- }
- */
-
public boolean
removeElementWithValue(K key, V value)
{
@@ -54,7 +40,7 @@ public final class OutgoingConnectionFactory
}
return v;
}
- };
+ }
interface CreateConnectionCallback
{