Skip to content

Commit 50999c2

Browse files
author
marshalllaw18
authored
Fix typo in HttpRequest.equals()
1 parent 5cd3ed8 commit 50999c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/com/onelogin/saml2/http/HttpRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ public boolean equals(Object o) {
191191
HttpRequest that = (HttpRequest) o;
192192
return Objects.equals(requestURL, that.requestURL) &&
193193
Objects.equals(parameters, that.parameters) &&
194-
Objects.equals(queryString, this.queryString);
194+
Objects.equals(queryString, that.queryString);
195195
}
196196

197197
@Override
@@ -218,4 +218,4 @@ private static Map<String, List<String>> unmodifiableCopyOf(Map<String, List<Str
218218
}
219219

220220

221-
}
221+
}

0 commit comments

Comments
 (0)