Browse Source

Polishing contribution

See gh-36325
pull/36181/merge
rstoyanchev 1 week ago
parent
commit
77bc13dc8c
  1. 1
      spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/RequestMappingInfo.java

1
spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/RequestMappingInfo.java

@ -550,6 +550,7 @@ public final class RequestMappingInfo implements RequestCondition<RequestMapping @@ -550,6 +550,7 @@ public final class RequestMappingInfo implements RequestCondition<RequestMapping
result = 31 * result + this.headersCondition.hashCode();
result = 31 * result + this.consumesCondition.hashCode();
result = 31 * result + this.producesCondition.hashCode();
result = 31 * result + this.versionCondition.hashCode();
result = 31 * result + this.customConditionHolder.hashCode();
return result;
}

Loading…
Cancel
Save