Commit 477087f3 authored by Matt Tucker's avatar Matt Tucker Committed by matt

TODO...


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1774 b35dd754-fafc-0310-a699-88a17e54d16e
parent 2e83d4b1
......@@ -152,6 +152,7 @@ public class GroupManager {
* @return the total number of groups.
*/
public int getGroupCount() {
// TODO: add caching
return provider.getGroupCount();
}
......@@ -161,6 +162,7 @@ public class GroupManager {
* @return an unmodifiable Collection of all groups.
*/
public Collection<Group> getGroups() {
// TODO: add caching
return provider.getGroups();
}
......@@ -179,6 +181,7 @@ public class GroupManager {
* @return an Iterator for all groups in the specified range.
*/
public Collection<Group> getGroups(int startIndex, int numResults) {
// TODO: add caching
return provider.getGroups(startIndex, numResults);
}
......
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