fix request param render bug
This commit is contained in:
parent
725781fc7a
commit
e05a4ea0dc
|
@ -1046,7 +1046,7 @@ public class SourceBuilder {
|
|||
reqParam.append(paramName).append("|")
|
||||
.append(DocClassUtil.processTypeNameForParams(simpleName)).append("|")
|
||||
.append(comment).append("|")
|
||||
.append(required).append("\n");
|
||||
.append(required).append("|-\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ public class BeetlTemplateUtil {
|
|||
|
||||
/**
|
||||
* Get Beetl template by file name
|
||||
* @param templateName
|
||||
* @param templateName template name
|
||||
* @return Beetl Template Object
|
||||
*/
|
||||
public static Template getByName(String templateName) {
|
||||
|
|
Loading…
Reference in New Issue