Commit a217abd4 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed concurrency error.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8672 b35dd754-fafc-0310-a699-88a17e54d16e
parent 67f9ab65
...@@ -539,7 +539,7 @@ public class RoutingTableImpl extends BasicModule implements RoutingTable, Clust ...@@ -539,7 +539,7 @@ public class RoutingTableImpl extends BasicModule implements RoutingTable, Clust
} }
public Collection<String> getServerHostnames() { public Collection<String> getServerHostnames() {
return serversCache.keySet(); return new ArrayList<String>(serversCache.keySet());
} }
public boolean hasClientRoute(JID jid) { public boolean hasClientRoute(JID jid) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment