Merge pull request #3486 from hmlnarik/KEYCLOAK-3488
KEYCLOAK-3488 Fix typo in SamlPrincipal
This commit is contained in:
commit
65136fabdd
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ public class SamlPrincipal implements Serializable, Principal {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<String> getFriendlyAttributes(String friendlyName) {
|
public List<String> getFriendlyAttributes(String friendlyName) {
|
||||||
List<String> list = friendlyAttributes.get(name);
|
List<String> list = friendlyAttributes.get(friendlyName);
|
||||||
if (list != null) {
|
if (list != null) {
|
||||||
return Collections.unmodifiableList(list);
|
return Collections.unmodifiableList(list);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue