Skip to content

Commit b322cbd

Browse files
committed
Add missing @nullable to WebFlux RequestMappingHandlerMapping
Closes gh-25657
1 parent d022fcf commit b322cbd

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
@@ -146,6 +146,7 @@ protected boolean isHandler(Class<?> beanType) {
146146
* @see #getCustomTypeCondition(Class)
147147
*/
148148
@Override
149+
@Nullable
149150
protected RequestMappingInfo getMappingForMethod(Method method, Class<?> handlerType) {
150151
RequestMappingInfo info = createRequestMappingInfo(method);
151152
if (info != null) {

0 commit comments

Comments
 (0)