Skip to content

Commit f0d1f1d

Browse files
committed
Polishing
1 parent 1b102a8 commit f0d1f1d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

junit-jupiter-params/src/main/java/org/junit/jupiter/params/provider/CsvReaderFactory.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,15 @@ private static CsvCallbackHandler<? extends CsvRecord> createCallbackHandler(Str
149149

150150
record DefaultFieldModifier(String emptyValue, Set<String> nullValues, boolean ignoreLeadingAndTrailingWhitespaces)
151151
implements FieldModifier {
152+
152153
/**
153-
* Represents a {@code null} value and serves as a workaround
154-
* since FastCSV does not allow the modified field value to be {@code null}.
155-
* <p>
156-
* The marker is generated with a unique ID to ensure it cannot conflict with actual CSV content.
154+
* Represents a {@code null} value and serves as a workaround since FastCSV
155+
* does not allow the modified field value to be {@code null}.
156+
*
157+
* <p>The marker is generated with a unique ID to ensure it cannot conflict
158+
* with actual CSV content.
157159
*/
158-
static final String NULL_MARKER = "<null marker with unique id: %s>".formatted(UUID.randomUUID());
160+
static final String NULL_MARKER = "<null marker: %s>".formatted(UUID.randomUUID());
159161

160162
@Override
161163
public String modify(long unusedStartingLineNumber, int unusedFieldIdx, boolean quoted, String field) {

0 commit comments

Comments
 (0)