-
Bug
-
Resolution: Done
-
Major
-
24.0.0.Beta1
-
None
The method "setRoles" calls on a parameter instead of the self-named instance variable.
https://github.com/wildfly/wildfly/blob/24.0.0.Beta1/undertow/src/main/java/org/wildfly/extension/undertow/security/AccountImpl.java#L80
void setRoles(final Set<String> roles) { this.roles.clear(); roles.addAll(roles); }
must be
void setRoles(final Set<String> roles) { this.roles.clear(); this.roles.addAll(roles); }