We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 514a774 commit 82eb146Copy full SHA for 82eb146
springdoc-openapi-webmvc-core/src/test/java/test/org/springdoc/api/app121/TestController.java
@@ -1,6 +1,5 @@
1
package test.org.springdoc.api.app121;
2
3
-import com.sun.istack.internal.Nullable;
4
import org.springdoc.api.annotations.ParameterObject;
5
6
import org.springframework.web.bind.annotation.PostMapping;
@@ -11,7 +10,7 @@
11
10
public class TestController {
12
13
@PostMapping("test")
14
- public InheritedRequestParams getTest(@RequestParam @Nullable String param, @ParameterObject InheritedRequestParams requestParams) {
+ public InheritedRequestParams getTest(@RequestParam String param, @ParameterObject InheritedRequestParams requestParams) {
15
return requestParams;
16
}
17
0 commit comments