Skip to content

Commit

Permalink
Cleanup generic type warning in LDAPApi
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Jones committed Aug 13, 2016
1 parent 0b7627f commit 399e262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/mamute/auth/LDAPApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ private List<String> getGroups(Entry user) {
if (isNotEmpty(groupAttr)) {
Attribute grpEntry = user.get(groupAttr);
if (grpEntry != null) {
for (Value grp : grpEntry) {
for (Value<?> grp : grpEntry) {
groupCns.add(grp.getString());
}
}
Expand Down

0 comments on commit 399e262

Please sign in to comment.