mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-16 23:16:01 +00:00
PMD: Unnecessary use of fully qualified name 'Constants.EMPTY' due to
existing static import 'org.apache.commons.csv.Constants.EMPTY'
This commit is contained in:
parent
4a8f340239
commit
99be47eb9b
@ -1060,7 +1060,7 @@ public final class CSVFormat implements Serializable {
|
||||
if (value == null) {
|
||||
// https://issues.apache.org/jira/browse/CSV-203
|
||||
if (null == nullString) {
|
||||
charSequence = Constants.EMPTY;
|
||||
charSequence = EMPTY;
|
||||
} else {
|
||||
if (QuoteMode.ALL == quoteMode) {
|
||||
charSequence = quoteCharacter + nullString + quoteCharacter;
|
||||
|
Loading…
x
Reference in New Issue
Block a user