remove {{newline}} as it has no impact at all

This commit is contained in:
William Cheng 2015-03-27 23:49:27 +08:00
parent 731bfc1fc6
commit bfb35aa3ee

View File

@ -39,9 +39,9 @@ public class {{classname}} {
{{#operation}}
/**
* {{summary}}
* {{notes}}{{newLine}}
{{#allParams}}{{newLine}} * @param {{paramName}} {{description}}
{{/allParams}}{{newLine}} * @return {{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}void{{/returnType}}{{newLine}}
* {{notes}}
{{#allParams}} * @param {{paramName}} {{description}}
{{/allParams}} * @return {{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}void{{/returnType}}
*/
public {{#returnType}}{{{returnType}}} {{/returnType}}{{^returnType}}void {{/returnType}}{{nickname}} ({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}}) throws ApiException {
Object postBody = {{#bodyParam}}{{paramName}}{{/bodyParam}}{{^bodyParam}}null{{/bodyParam}};