Skip to content

Commit 3dee577

Browse files
authored
semi was missing at the end
1 parent 6fda038 commit 3dee577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/service/AbstractRequestService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ private boolean isRequestBodyParam(RequestMethod requestMethod, ParameterInfo pa
781781
private boolean checkRequestBodyAnnotation(MethodParameter methodParamater) {
782782
return methodParameter.getParameterAnnotation(org.springframework.web.bind.annotation.RequestBody.class) != null
783783
|| AnnotatedElementUtils.findMergedAnnotation(Objects.requireNonNull(methodParameter.getParameter()), io.swagger.v3.oas.annotations.parameters.RequestBody.class) != null
784-
|| AnnotatedElementUtils.findMergedAnnotation(Objects.requireNonNull(methodParameter.getMethod()), io.swagger.v3.oas.annotations.parameters.RequestBody.class) != null
784+
|| AnnotatedElementUtils.findMergedAnnotation(Objects.requireNonNull(methodParameter.getMethod()), io.swagger.v3.oas.annotations.parameters.RequestBody.class) != null;
785785
}
786786

787787
/**

0 commit comments

Comments
 (0)