Skip to content

Commit a12cc1c

Browse files
committed
remove {{newline}} as it has no impact at all
1 parent 27e1b1c commit a12cc1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/swagger-codegen/src/main/resources/Java/api.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ public class {{classname}} {
3939
{{#operation}}
4040
/**
4141
* {{summary}}
42-
* {{notes}}{{newLine}}
43-
{{#allParams}}{{newLine}} * @param {{paramName}} {{description}}
44-
{{/allParams}}{{newLine}} * @return {{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}void{{/returnType}}{{newLine}}
42+
* {{notes}}
43+
{{#allParams}} * @param {{paramName}} {{description}}
44+
{{/allParams}} * @return {{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}void{{/returnType}}
4545
*/
4646
public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{nickname}} ({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException {
4747
Object postBody = {{#bodyParam}}{{paramName}}{{/bodyParam}}{{^bodyParam}}null{{/bodyParam}};

0 commit comments

Comments
 (0)