Fixed deprecated function

This commit is contained in:
luca.frosini 2023-09-12 16:00:36 +02:00
parent 50d1974424
commit 41e88f0c6e
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public class SocialUsers {
public static Set<String> getUsernamesByRole(String roleName) throws Exception {
UserClient userClient = new UserClient();
Set<String> usernames = new HashSet<>(userClient.getAllUsernamesByLocalRole(roleName));
Set<String> usernames = new HashSet<>(userClient.getAllUsernamesByRole(roleName));
return usernames;
}