Skip to content

Commit cce3c96

Browse files
authored
Added check for hasHttpSignatureMethods. (#14339)
1 parent babfdff commit cce3c96

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

modules/openapi-generator/src/main/resources/Java/libraries/jersey3/ApiClient.mustache

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,12 @@ public class ApiClient{{#jsr310}} extends JavaTimeFormatter{{/jsr310}} {
12341234
queryParams,
12351235
allHeaderParams,
12361236
cookieParams,
1237+
{{#hasHttpSignatureMethods}}
12371238
serializeToString(body, formParams, contentType, isBodyNullable),
1239+
{{/hasHttpSignatureMethods}}
1240+
{{^hasHttpSignatureMethods}}
1241+
null,
1242+
{{/hasHttpSignatureMethods}}
12381243
method,
12391244
target.getUri());
12401245

0 commit comments

Comments
 (0)