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 82eb146 commit a41f1f2Copy full SHA for a41f1f2
springdoc-openapi-webmvc-core/src/test/java/test/org/springdoc/api/app121/RequestParams.java
@@ -4,7 +4,6 @@
4
import java.util.List;
5
import java.util.Optional;
6
7
-import com.sun.istack.internal.Nullable;
8
import io.swagger.v3.oas.annotations.Parameter;
9
10
@@ -54,12 +53,11 @@ public void setIntParam2(Optional<String> intParam2) {
54
53
this.intParam2 = intParam2;
55
}
56
57
- @Nullable
58
public String getIntParam3() {
59
return intParam3;
60
61
62
- public void setIntParam3(@Nullable String intParam3) {
+ public void setIntParam3(String intParam3) {
63
this.intParam3 = intParam3;
64
65
0 commit comments