Skip to content

Commit 3c393fe

Browse files
authored
Removed invalid Javadoc markup for CSVFormat EXCEL (apache#64)
Removed `@link`s in `@code` blocks for `CSVFormat EXCEL` Javadoc. Cf. https://javadoc.io/doc/org.apache.commons/commons-csv/1.8/org/apache/commons/csv/CSVFormat.html#EXCEL (or https://javadoc.io/doc/org.apache.commons/commons-csv/1.7/org/apache/commons/csv/CSVFormat.html#EXCEL) for render of currently broken version, for example.
1 parent 3df2376 commit 3c393fe

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -284,12 +284,12 @@ public CSVFormat getFormat() {
284284
* Settings are:
285285
* </p>
286286
* <ul>
287-
* <li>{@code {@link #withDelimiter(char) withDelimiter(',')}}</li>
288-
* <li>{@code {@link #withQuote(char) withQuote('"')}}</li>
289-
* <li>{@code {@link #withRecordSeparator(String) withRecordSeparator("\r\n")}}</li>
290-
* <li>{@code {@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}}</li>
291-
* <li>{@code {@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}}</li>
292-
* <li>{@code {@link #withAllowDuplicateHeaderNames(boolean) withAllowDuplicateHeaderNames(true)}}</li>
287+
* <li>{@code withDelimiter(',')}</li>
288+
* <li>{@code withQuote('"')}</li>
289+
* <li>{@code withRecordSeparator("\r\n")}</li>
290+
* <li>{@code withIgnoreEmptyLines(false)}</li>
291+
* <li>{@code withAllowMissingColumnNames(true)}</li>
292+
* <li>{@code withAllowDuplicateHeaderNames(true)}</li>
293293
* </ul>
294294
* <p>
295295
* Note: This is currently like {@link #RFC4180} plus {@link #withAllowMissingColumnNames(boolean)

0 commit comments

Comments
 (0)