Skip to content

Commit 99be47e

Browse files
committed
PMD: Unnecessary use of fully qualified name 'Constants.EMPTY' due to
existing static import 'org.apache.commons.csv.Constants.EMPTY'
1 parent 4a8f340 commit 99be47e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ public void print(final Object value, final Appendable out, final boolean newRec
10601060
if (value == null) {
10611061
// https://issues.apache.org/jira/browse/CSV-203
10621062
if (null == nullString) {
1063-
charSequence = Constants.EMPTY;
1063+
charSequence = EMPTY;
10641064
} else {
10651065
if (QuoteMode.ALL == quoteMode) {
10661066
charSequence = quoteCharacter + nullString + quoteCharacter;

0 commit comments

Comments
 (0)