replace tab with 4-space in spring templates (#5389)

This commit is contained in:
wing328
2017-04-13 19:03:34 +08:00
committed by GitHub
parent c637157f9e
commit 4e6a342c13
38 changed files with 665 additions and 665 deletions

View File

@@ -2,9 +2,9 @@ package {{apiPackage}};
{{>generatedAnnotation}}
public class NotFoundException extends ApiException {
private int code;
public NotFoundException (int code, String msg) {
super(code, msg);
this.code = code;
}
private int code;
public NotFoundException (int code, String msg) {
super(code, msg);
this.code = code;
}
}