KEYCLOAK-3488 Fix typo

This commit is contained in:
Hynek Mlnarik 2016-11-09 15:11:45 +01:00
parent c05057748f
commit 43002f7a8a

View file

@ -105,7 +105,7 @@ public class SamlPrincipal implements Serializable, Principal {
* @return
*/
public List<String> getFriendlyAttributes(String friendlyName) {
List<String> list = friendlyAttributes.get(name);
List<String> list = friendlyAttributes.get(friendlyName);
if (list != null) {
return Collections.unmodifiableList(list);
} else {