SEC-1702: Add Burt's patch implementing hashcode method in AntPathRequestMatcher

This commit is contained in:
Luke Taylor 2011-03-25 20:44:18 +00:00
parent 4a1908188a
commit 78d5495945
1 changed files with 9 additions and 0 deletions

View File

@ -132,6 +132,15 @@ public final class AntPathRequestMatcher implements RequestMatcher {
this.httpMethod == other.httpMethod;
}
@Override
public int hashCode() {
int code = 31 ^ pattern.hashCode();
if (httpMethod != null) {
code ^= httpMethod.hashCode();
}
return code;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();