Skip to content

Commit 029030b

Browse files
committed
Fix one flag in #472
1 parent 9039e78 commit 029030b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csv/src/main/java/com/fasterxml/jackson/dataformat/csv/CsvParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,7 @@ protected boolean _isNullValue(String value) {
14471447
return true;
14481448
}
14491449
}
1450-
if (_cfgEmptyStringAsNull && _currentValue.isEmpty()) {
1450+
if (_cfgEmptyStringAsNull && value.isEmpty()) {
14511451
return true;
14521452
}
14531453
return false;

0 commit comments

Comments
 (0)