Skip to content

Commit a4b45a3

Browse files
committed
Fix #166
1 parent f03d602 commit a4b45a3

File tree

1 file changed

+1
-1
lines changed
  • samples/java-saml-tookit-jspsample/src/main/webapp

1 file changed

+1
-1
lines changed

samples/java-saml-tookit-jspsample/src/main/webapp/attrs.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
3434
while (elems.hasMoreElements() && !found) {
3535
String value = (String) elems.nextElement();
36-
if (value == "attributes" || value == "nameId") {
36+
if (value.equals("attributes") || value.equals("nameId")) {
3737
found = true;
3838
}
3939
}

0 commit comments

Comments
 (0)