Skip to content

Commit

Permalink
Fix one flag in #472
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 4, 2024
1 parent 9039e78 commit 029030b
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 029030b

Please sign in to comment.