Skip to content

Commit

Permalink
style-checkStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
aruis committed Nov 5, 2024
1 parent df6665e commit 90e8ab3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public Object extractDefaultContent(String input) {

if (this.getType().equalsIgnoreCase("bool")) {
return Boolean.parseBoolean(input);
}else if(this.getType().startsWith("int")){
} else if (this.getType().startsWith("int")) {
return Integer.parseInt(input);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import net.ximatai.muyun.ability.curd.std.IDataCheckAbility;
import net.ximatai.muyun.ability.curd.std.IQueryAbility;
import net.ximatai.muyun.base.BaseBusinessTable;
import net.ximatai.muyun.core.config.MuYunConfig;
import net.ximatai.muyun.core.exception.MyException;
import net.ximatai.muyun.database.builder.Column;
import net.ximatai.muyun.database.builder.TableWrapper;
Expand Down

0 comments on commit 90e8ab3

Please sign in to comment.