[asterisk-scf-commits] asterisk-scf/integration/ice.git branch "jdk-7" created.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Fri Oct 21 15:53:50 CDT 2011
branch "jdk-7" has been created
at d791a3913bc966e2736a8f13172630bf4bc2b6a4 (commit)
- Log -----------------------------------------------------------------
commit d791a3913bc966e2736a8f13172630bf4bc2b6a4
Author: David M. Lee <dlee at digium.com>
Date: Thu Oct 20 10:57:16 2011 -0500
Fix for JDK-7
diff --git a/java/src/IceInternal/OutgoingConnectionFactory.java b/java/src/IceInternal/OutgoingConnectionFactory.java
index 2036c08..ad394b1 100644
--- a/java/src/IceInternal/OutgoingConnectionFactory.java
+++ b/java/src/IceInternal/OutgoingConnectionFactory.java
@@ -17,7 +17,7 @@ public final class OutgoingConnectionFactory
private static class MultiHashMap<K, V> extends java.util.HashMap<K, java.util.List<V>>
{
public void
- put(K key, V value)
+ putOne(K key, V value)
{
java.util.List<V> list = this.get(key);
if(list == null)
@@ -693,9 +693,9 @@ public final class OutgoingConnectionFactory
throw ex;
}
- _connections.put(ci.connector, connection);
- _connectionsByEndpoint.put(connection.endpoint(), connection);
- _connectionsByEndpoint.put(connection.endpoint().compress(true), connection);
+ _connections.putOne(ci.connector, connection);
+ _connectionsByEndpoint.putOne(connection.endpoint(), connection);
+ _connectionsByEndpoint.putOne(connection.endpoint().compress(true), connection);
return connection;
}
-----------------------------------------------------------------------
--
asterisk-scf/integration/ice.git
More information about the asterisk-scf-commits
mailing list