Remove useless anonymous subclass creation
This commit is contained in:
parent
7d42a4e1d2
commit
5c2b20d4e0
1 changed files with 1 additions and 2 deletions
|
@ -228,8 +228,7 @@ public class UserAdapter extends Adapter<UserModel, User> {
|
|||
|
||||
@Override
|
||||
public Stream<UserModel> getResourceStream() {
|
||||
Map<String, String> params = new HashMap<>() {
|
||||
};
|
||||
Map<String, String> params = new HashMap<>();
|
||||
return this.session.users().searchForUserStream(realm, params);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue