Removed invalid Javadoc markup for CSVFormat EXCEL (#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.
This commit is contained in:
a4ff7810 2020-04-03 23:04:20 +02:00 committed by GitHub
parent 3df2376866
commit 3c393fedbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -284,12 +284,12 @@ public final class CSVFormat implements Serializable {
* Settings are: * Settings are:
* </p> * </p>
* <ul> * <ul>
* <li>{@code {@link #withDelimiter(char) withDelimiter(',')}}</li> * <li>{@code withDelimiter(',')}</li>
* <li>{@code {@link #withQuote(char) withQuote('"')}}</li> * <li>{@code withQuote('"')}</li>
* <li>{@code {@link #withRecordSeparator(String) withRecordSeparator("\r\n")}}</li> * <li>{@code withRecordSeparator("\r\n")}</li>
* <li>{@code {@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}}</li> * <li>{@code withIgnoreEmptyLines(false)}</li>
* <li>{@code {@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}}</li> * <li>{@code withAllowMissingColumnNames(true)}</li>
* <li>{@code {@link #withAllowDuplicateHeaderNames(boolean) withAllowDuplicateHeaderNames(true)}}</li> * <li>{@code withAllowDuplicateHeaderNames(true)}</li>
* </ul> * </ul>
* <p> * <p>
* Note: This is currently like {@link #RFC4180} plus {@link #withAllowMissingColumnNames(boolean) * Note: This is currently like {@link #RFC4180} plus {@link #withAllowMissingColumnNames(boolean)