summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/OutgoingConnectionFactory.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2007-12-05 15:09:18 +0100
committerBenoit Foucher <benoit@zeroc.com>2007-12-05 15:09:18 +0100
commit5124965c25862fa450509beddfa7266effacddfd (patch)
tree6b1cb4b983eb36d6b4d7c4ebeb7687b1832318ca /java/src/IceInternal/OutgoingConnectionFactory.java
parentAdded support for service commands to icegridadmin (bug 1775) (diff)
downloadice-5124965c25862fa450509beddfa7266effacddfd.tar.bz2
ice-5124965c25862fa450509beddfa7266effacddfd.tar.xz
ice-5124965c25862fa450509beddfa7266effacddfd.zip
Fixed NPE in the outgoing connection factory
Diffstat (limited to 'java/src/IceInternal/OutgoingConnectionFactory.java')
-rw-r--r--java/src/IceInternal/OutgoingConnectionFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/IceInternal/OutgoingConnectionFactory.java b/java/src/IceInternal/OutgoingConnectionFactory.java
index fb3108aa472..601b522bf10 100644
--- a/java/src/IceInternal/OutgoingConnectionFactory.java
+++ b/java/src/IceInternal/OutgoingConnectionFactory.java
@@ -814,7 +814,7 @@ public final class OutgoingConnectionFactory
private void
finishGetConnection(java.util.List connectors, ConnectCallback cb, Ice.ConnectionI connection)
{
- java.util.ArrayList callbacks = new java.util.ArrayList();
+ java.util.Set callbacks = new java.util.HashSet();
synchronized(this)
{