Skip to content

Commit

Permalink
Merge branch '2.17' into 2.18
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 4, 2024
2 parents e72230f + 029030b commit 810230a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,7 @@ protected boolean _isNullValue(String value) {
return true;
}
}
if (_cfgEmptyStringAsNull && _currentValue.isEmpty()) {
if (_cfgEmptyStringAsNull && value.isEmpty()) {
return true;
}
return false;
Expand Down

0 comments on commit 810230a

Please sign in to comment.