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:
parent
3df2376866
commit
3c393fedbd
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue