@@ -158,10 +158,10 @@ public abstract class AbstractRequestService {
158158 /**
159159 * Instantiates a new Abstract request builder.
160160 *
161- * @param parameterBuilder the parameter builder
162- * @param requestBodyService the request body builder
163- * @param operationService the operation builder
164- * @param parameterCustomizers the parameter customizers
161+ * @param parameterBuilder the parameter builder
162+ * @param requestBodyService the request body builder
163+ * @param operationService the operation builder
164+ * @param parameterCustomizers the parameter customizers
165165 * @param localSpringDocParameterNameDiscoverer the local spring doc parameter name discoverer
166166 */
167167 protected AbstractRequestService (GenericParameterService parameterBuilder , RequestBodyService requestBodyService ,
@@ -200,7 +200,7 @@ public static void removeRequestWrapperToIgnore(Class<?>... classes) {
200200 /**
201201 * Is request type to ignore boolean.
202202 *
203- * @param rawClass the raw class
203+ * @param rawClass the raw class
204204 * @return the boolean
205205 */
206206 public static boolean isRequestTypeToIgnore (Class <?> rawClass ) {
@@ -210,11 +210,11 @@ public static boolean isRequestTypeToIgnore(Class<?> rawClass) {
210210 /**
211211 * Build operation.
212212 *
213- * @param handlerMethod the handler method
214- * @param requestMethod the request method
215- * @param operation the operation
216- * @param methodAttributes the method attributes
217- * @param openAPI the open api
213+ * @param handlerMethod the handler method
214+ * @param requestMethod the request method
215+ * @param operation the operation
216+ * @param methodAttributes the method attributes
217+ * @param openAPI the open api
218218 * @return the operation
219219 */
220220 public Operation build (HandlerMethod handlerMethod , RequestMethod requestMethod ,
@@ -281,10 +281,10 @@ else if (!RequestMethod.GET.equals(requestMethod)) {
281281 /**
282282 * Gets parameter linked hash map.
283283 *
284- * @param components the components
285- * @param methodAttributes the method attributes
286- * @param operationParameters the operation parameters
287- * @param parametersDocMap the parameters doc map
284+ * @param components the components
285+ * @param methodAttributes the method attributes
286+ * @param operationParameters the operation parameters
287+ * @param parametersDocMap the parameters doc map
288288 * @return the parameter linked hash map
289289 */
290290 private LinkedHashMap <String , Parameter > getParameterLinkedHashMap (Components components , MethodAttributes methodAttributes , List <Parameter > operationParameters , Map <String , io .swagger .v3 .oas .annotations .Parameter > parametersDocMap ) {
@@ -314,8 +314,8 @@ private LinkedHashMap<String, Parameter> getParameterLinkedHashMap(Components co
314314 /**
315315 * Gets headers.
316316 *
317- * @param methodAttributes the method attributes
318- * @param map the map
317+ * @param methodAttributes the method attributes
318+ * @param map the map
319319 * @return the headers
320320 */
321321 @ SuppressWarnings ("unchecked" )
@@ -336,8 +336,8 @@ public static Collection<Parameter> getHeaders(MethodAttributes methodAttributes
336336 /**
337337 * Customise parameter parameter.
338338 *
339- * @param parameter the parameter
340- * @param parameterInfo the parameter info
339+ * @param parameter the parameter
340+ * @param parameterInfo the parameter info
341341 * @return the parameter
342342 */
343343 protected Parameter customiseParameter (Parameter parameter , ParameterInfo parameterInfo ) {
@@ -348,7 +348,7 @@ protected Parameter customiseParameter(Parameter parameter, ParameterInfo parame
348348 /**
349349 * Is param to ignore boolean.
350350 *
351- * @param parameter the parameter
351+ * @param parameter the parameter
352352 * @return the boolean
353353 */
354354 public boolean isParamToIgnore (MethodParameter parameter ) {
@@ -362,7 +362,7 @@ public boolean isParamToIgnore(MethodParameter parameter) {
362362 /**
363363 * Is required annotation boolean.
364364 *
365- * @param parameter the parameter
365+ * @param parameter the parameter
366366 * @return the boolean
367367 */
368368 private boolean isRequiredAnnotation (MethodParameter parameter ) {
@@ -377,8 +377,8 @@ private boolean isRequiredAnnotation(MethodParameter parameter) {
377377 /**
378378 * Sets params.
379379 *
380- * @param operation the operation
381- * @param operationParameters the operation parameters
380+ * @param operation the operation
381+ * @param operationParameters the operation parameters
382382 * @param requestBodyInfo the request body info
383383 */
384384 private void setParams (Operation operation , List <Parameter > operationParameters , RequestBodyInfo requestBodyInfo ) {
@@ -391,7 +391,7 @@ private void setParams(Operation operation, List<Parameter> operationParameters,
391391 /**
392392 * Is valid parameter boolean.
393393 *
394- * @param parameter the parameter
394+ * @param parameter the parameter
395395 * @return the boolean
396396 */
397397 public boolean isValidParameter (Parameter parameter ) {
@@ -401,10 +401,10 @@ public boolean isValidParameter(Parameter parameter) {
401401 /**
402402 * Build params parameter.
403403 *
404- * @param parameterInfo the parameter info
405- * @param components the components
406- * @param requestMethod the request method
407- * @param jsonView the json view
404+ * @param parameterInfo the parameter info
405+ * @param components the components
406+ * @param requestMethod the request method
407+ * @param jsonView the json view
408408 * @return the parameter
409409 */
410410 public Parameter buildParams (ParameterInfo parameterInfo , Components components ,
@@ -433,9 +433,9 @@ public Parameter buildParams(ParameterInfo parameterInfo, Components components,
433433 /**
434434 * Build param parameter.
435435 *
436- * @param parameterInfo the parameter info
437- * @param components the components
438- * @param jsonView the json view
436+ * @param parameterInfo the parameter info
437+ * @param components the components
438+ * @param jsonView the json view
439439 * @return the parameter
440440 */
441441 private Parameter buildParam (ParameterInfo parameterInfo , Components components , JsonView jsonView ) {
@@ -472,7 +472,7 @@ private Parameter buildParam(ParameterInfo parameterInfo, Components components,
472472 /**
473473 * Apply bean validator annotations.
474474 *
475- * @param parameter the parameter
475+ * @param parameter the parameter
476476 * @param annotations the annotations
477477 */
478478 public void applyBeanValidatorAnnotations (final Parameter parameter , final List <Annotation > annotations ) {
@@ -489,8 +489,8 @@ public void applyBeanValidatorAnnotations(final Parameter parameter, final List<
489489 /**
490490 * Apply bean validator annotations.
491491 *
492- * @param requestBody the request body
493- * @param annotations the annotations
492+ * @param requestBody the request body
493+ * @param annotations the annotations
494494 * @param isOptional the is optional
495495 */
496496 public void applyBeanValidatorAnnotations (final RequestBody requestBody , final List <Annotation > annotations , boolean isOptional ) {
@@ -516,7 +516,7 @@ public void applyBeanValidatorAnnotations(final RequestBody requestBody, final L
516516 /**
517517 * Calculate size.
518518 *
519- * @param annos the annos
519+ * @param annos the annos
520520 * @param schema the schema
521521 */
522522 private void calculateSize (Map <String , Annotation > annos , Schema <?> schema ) {
@@ -545,7 +545,7 @@ public RequestBodyService getRequestBodyBuilder() {
545545 /**
546546 * Gets api parameters.
547547 *
548- * @param method the method
548+ * @param method the method
549549 * @return the api parameters
550550 */
551551 private Map <String , io .swagger .v3 .oas .annotations .Parameter > getApiParameters (Method method ) {
@@ -584,7 +584,7 @@ private Map<String, io.swagger.v3.oas.annotations.Parameter> getApiParameters(Me
584584 /**
585585 * Apply validations to schema.
586586 *
587- * @param annos the annos
587+ * @param annos the annos
588588 * @param schema the schema
589589 */
590590 private void applyValidationsToSchema (Map <String , Annotation > annos , Schema <?> schema ) {
0 commit comments