You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A custom RequestCondition which can be provided by overriding methods
in RequestMappingHandlerMapping worked only for conditions that match
and did not return null (as it should have) for conditions that don't
match.
Issue: SPR-9134
Backport-Issue: SPR-9146
Backport-Commit: 64ee5e5
Copy file name to clipboardExpand all lines: org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/mvc/condition/RequestConditionHolder.java
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -25,22 +25,22 @@
25
25
/**
26
26
* A holder for a {@link RequestCondition} useful when the type of the held
27
27
* request condition is not known ahead of time - e.g. custom condition.
28
-
*
29
-
* <p>An implementation of {@code RequestCondition} itself, a
30
-
* {@code RequestConditionHolder} decorates the held request condition allowing
31
-
* it to be combined and compared with other custom request conditions while
28
+
*
29
+
* <p>An implementation of {@code RequestCondition} itself, a
30
+
* {@code RequestConditionHolder} decorates the held request condition allowing
31
+
* it to be combined and compared with other custom request conditions while
Copy file name to clipboardExpand all lines: org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/condition/RequestConditionHolderTests.java
0 commit comments