You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: springdoc-openapi-starter-common/src/main/java/org/springdoc/core/extractor/DelegatingMethodParameter.java
+11-3
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,11 @@ public class DelegatingMethodParameter extends MethodParameter {
88
88
*/
89
89
privatefinalbooleanisParameterObject;
90
90
91
+
/**
92
+
* The Method annotations.
93
+
*/
94
+
privatefinalAnnotation[] methodAnnotations;
95
+
91
96
/**
92
97
* The Is not required.
93
98
*/
@@ -99,16 +104,18 @@ public class DelegatingMethodParameter extends MethodParameter {
99
104
* @param delegate the delegate
100
105
* @param parameterName the parameter name
101
106
* @param additionalParameterAnnotations the additional parameter annotations
107
+
* @param methodAnnotations the method annotations
102
108
* @param isParameterObject the is parameter object
Copy file name to clipboardExpand all lines: springdoc-openapi-starter-common/src/main/java/org/springdoc/core/extractor/MethodParameterPojoExtractor.java
0 commit comments