From f0b4fc5109f0ae9511c7298822c086c1c2011b9e Mon Sep 17 00:00:00 2001
From: Benedikt Ritter
Date: Sun, 10 Aug 2014 09:23:01 +0000
Subject: [PATCH] Fix JavaDoc problems
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1617076 13f79535-47bb-0310-9956-ffa450edef68
---
.../org/apache/commons/csv/CSVFormat.java | 19 +++++++++++--------
.../org/apache/commons/csv/CSVPrinter.java | 16 ++++++++--------
2 files changed, 19 insertions(+), 16 deletions(-)
diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java
index 74f82b94..8cf030d9 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -162,14 +162,15 @@ public final class CSVFormat implements Serializable {
/**
* Standard comma separated format, as for {@link #RFC4180} but allowing empty lines.
*
- *
Settings are:
+ *
+ * Settings are:
+ *
*
*
withDelimiter(',')
*
withQuoteChar('"')
*
withRecordSeparator("\r\n")
*
withIgnoreEmptyLines(true)
*
- *
*/
public static final CSVFormat DEFAULT = new CSVFormat(COMMA, DOUBLE_QUOTE_CHAR, null, null, null,
false, true, CRLF, null, null, false, false);
@@ -177,14 +178,15 @@ public final class CSVFormat implements Serializable {
/**
* Comma separated format as defined by RFC 4180.
*
- *
Settings are:
+ *
+ * Settings are:
+ *
*
*
withDelimiter(',')
*
withQuoteChar('"')
*
withRecordSeparator("\r\n")
*
withIgnoreEmptyLines(false)
*
- *
*/
public static final CSVFormat RFC4180 = DEFAULT.withIgnoreEmptyLines(false);
@@ -202,13 +204,13 @@ public final class CSVFormat implements Serializable {
*
*
* Settings are:
+ *
*
*
withDelimiter(',')
*
withQuoteChar('"')
*
withRecordSeparator("\r\n")
*
withIgnoreEmptyLines(false)
*
- *
*
* Note: this is currently the same as {@link #RFC4180}.
*
@@ -218,14 +220,15 @@ public final class CSVFormat implements Serializable {
/**
* Tab-delimited format.
*
- *
Settings are:
+ *
+ * Settings are:
+ *
*
*
withDelimiter('\t')
*
withQuoteChar('"')
*
withRecordSeparator("\r\n")
*
withIgnoreSurroundingSpaces(true)
*
- *
*/
public static final CSVFormat TDF =
DEFAULT
@@ -242,6 +245,7 @@ public final class CSVFormat implements Serializable {
*
*
* Settings are:
+ *
*
*
withDelimiter('\t')
*
withQuoteChar(null)
@@ -249,7 +253,6 @@ public final class CSVFormat implements Serializable {
*
withIgnoreEmptyLines(false)
*
withEscape('\\')
*
- *
* @see
* http://dev.mysql.com/doc/refman/5.1/en/load-data.html
*/
diff --git a/src/main/java/org/apache/commons/csv/CSVPrinter.java b/src/main/java/org/apache/commons/csv/CSVPrinter.java
index bdd2a960..c32d0885 100644
--- a/src/main/java/org/apache/commons/csv/CSVPrinter.java
+++ b/src/main/java/org/apache/commons/csv/CSVPrinter.java
@@ -387,21 +387,21 @@ public final class CSVPrinter implements Flushable, Closeable {
*
*
Given the following data structure:
*
- *
+ *
*
*
*
Calling this method will print:
*
- *
+ *
*
*
* @param values
@@ -430,21 +430,21 @@ public final class CSVPrinter implements Flushable, Closeable {
*
*