Skip to content

Commit

Permalink
remove irrelevant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
patriot1burke committed Nov 17, 2017
1 parent c66ff60 commit 83ff0ea
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,7 @@ public List<UserModel> getUsers(RealmModel realm) {

@Override
public List<UserModel> getUsers(RealmModel realm, int firstResult, int maxResults) {
// NOTE: If we ever end up caching this query, or the users returned by this query. The UsersResource.getUsers
// method must be reimplemented when "localOnly" query parameter is true.
return getUsers(realm, firstResult, maxResults, false);
return getUsers(realm, firstResult, maxResults, false);
}

@Override
Expand All @@ -623,8 +621,6 @@ public List<UserModel> searchForUser(String search, RealmModel realm) {

@Override
public List<UserModel> searchForUser(String search, RealmModel realm, int firstResult, int maxResults) {
// NOTE: If we ever end up caching this query, or the users returned by this query. The UsersResource.getUsers
// method must be reimplemented when "localOnly" query parameter is true.
return getDelegate().searchForUser(search, realm, firstResult, maxResults);
}

Expand All @@ -635,8 +631,6 @@ public List<UserModel> searchForUser(Map<String, String> attributes, RealmModel

@Override
public List<UserModel> searchForUser(Map<String, String> attributes, RealmModel realm, int firstResult, int maxResults) {
// NOTE: If we ever end up caching this query, or the users returned by this query. The UsersResource.getUsers
// method must be reimplemented when "localOnly" query parameter is true.
return getDelegate().searchForUser(attributes, realm, firstResult, maxResults);
}

Expand Down

0 comments on commit 83ff0ea

Please sign in to comment.