1
0
mirror of synced 2026-08-04 01:07:02 +00:00

Merge remote-tracking branch 'origin/6.5.x'

This commit is contained in:
Josh Cummings
2025-07-02 13:19:00 -06:00
@@ -138,7 +138,7 @@ public final class PathPatternRequestMatcher implements RequestMatcher {
if (!(o instanceof PathPatternRequestMatcher that)) {
return false;
}
return Objects.equals(this.pattern, that.pattern);
return Objects.equals(this.pattern, that.pattern) && Objects.equals(this.method, that.method);
}
/**
@@ -146,7 +146,7 @@ public final class PathPatternRequestMatcher implements RequestMatcher {
*/
@Override
public int hashCode() {
return Objects.hash(this.pattern);
return Objects.hash(this.pattern, this.method);
}
/**