From 39402786af5e100930121992161c08537fcbc143 Mon Sep 17 00:00:00 2001 From: Jendrik Johannes Date: Fri, 11 Sep 2026 14:36:46 +0200 Subject: [PATCH] Fix value param in Javadoc of addParamToMultipart This bug causes the `javadoc` tool to fail for the generated code with: ``` error: @param argument "obj" is not a parameter name. * @param obj Object ``` --- .../main/resources/Java/libraries/jersey3/ApiClient.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/jersey3/ApiClient.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/jersey3/ApiClient.mustache index dcab60b8f93a..c9a071285b99 100644 --- a/modules/openapi-generator/src/main/resources/Java/libraries/jersey3/ApiClient.mustache +++ b/modules/openapi-generator/src/main/resources/Java/libraries/jersey3/ApiClient.mustache @@ -1034,7 +1034,7 @@ public class ApiClient{{#jsr310}} extends JavaTimeFormatter{{/jsr310}} { * Adds the object with the provided key to the MultiPart. * Based on the object type sets Content-Disposition and Content-Type. * - * @param obj Object + * @param value Object * @param key Key of the object * @param multiPart MultiPart to add the form param to */