Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
babyfish-ct committed Feb 14, 2025
1 parent 4959167 commit eeb4c40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=org.babyfish.jimmer
version=0.9.51
version=0.9.52
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ private Set<Table> tablesOf(String table) throws SQLException {
}

private static String required(String value, String defaultValue) {
if ("".equals(value) || "null".equals(value)) {
if (defaultValue == null || "".equals(value) || "null".equals(value)) {
return defaultValue;
}
return value;
Expand Down

0 comments on commit eeb4c40

Please sign in to comment.