Commit e37c311a authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Modified return Generic in #getSessions from Session to ClientSession.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1697 b35dd754-fafc-0310-a699-88a17e54d16e
parent 024b0c00
......@@ -818,8 +818,8 @@ public class SessionManager extends BasicModule {
}
public Collection<Session> getSessions() {
List<Session> allSessions = new ArrayList<Session>();
public Collection<ClientSession> getSessions() {
List<ClientSession> allSessions = new ArrayList<ClientSession>();
copyUserSessions(allSessions);
copyAnonSessions(allSessions);
return allSessions;
......
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