Commit 9596d89a authored by Dave Cridland's avatar Dave Cridland

Correct classname for PresenceManager module lookup

Seems to have been left as the Impl class rather than the Interface itself.
parent 987a4bc2
......@@ -1063,7 +1063,7 @@ public class XMPPServer {
* @return the <code>PresenceManager</code> registered with this server.
*/
public PresenceManager getPresenceManager() {
return (PresenceManager) modules.get(PresenceManagerImpl.class.getName());
return (PresenceManager) modules.get(PresenceManager.class.getName());
}
/**
......
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