Commit 120b1709 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Reverted fix for concurrency. Cache is the one that needs to be thread safe.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8673 b35dd754-fafc-0310-a699-88a17e54d16e
parent a217abd4
......@@ -539,7 +539,7 @@ public class RoutingTableImpl extends BasicModule implements RoutingTable, Clust
}
public Collection<String> getServerHostnames() {
return new ArrayList<String>(serversCache.keySet());
return serversCache.keySet();
}
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