Skip to content

Commit 543333f

Browse files
committed
Add missing @nullable to WebFlux RequestMappingHandlerMapping
Closes gh-25657
1 parent db48b54 commit 543333f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spring-webflux/src/main/java/org/springframework/web/reactive/result/method/annotation/RequestMappingHandlerMapping.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ protected boolean isHandler(Class<?> beanType) {
140140
* @see #getCustomTypeCondition(Class)
141141
*/
142142
@Override
143+
@Nullable
143144
protected RequestMappingInfo getMappingForMethod(Method method, Class<?> handlerType) {
144145
RequestMappingInfo info = createRequestMappingInfo(method);
145146
if (info != null) {

0 commit comments

Comments
 (0)