diff --git a/src/changes/changes.xml b/src/changes/changes.xml index d58efb88..b8cc0f7d 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -20,13 +20,13 @@ This file is used by the maven-changes-plugin to generate the release notes. Useful ways of finding items to add to this file are: -1. Add items when you fix a bug or add a feature (this makes the +1. Add items when you fix a bug or add a feature (this makes the release process easy :-). 2. Do a JIRA search for tickets closed since the previous release. 3. Use the report generated by the maven-changelog-plugin to see all -SVN commits. Set the project.properties' maven.changelog.range +SVN commits. Set the project.properties' maven.changelog.range property to the number of days since the last release. @@ -41,6 +41,6 @@ The type attribute can be add,update,fix,remove. - + diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 6cdcf322..f79436c6 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -588,7 +588,7 @@ public class CSVFormat implements Serializable { * true when the parser should skip empty lines * @param recordSeparator * the line separator to use for output - * @param nullToString + * @param nullToString * the String to use to write null values. * @param header * the header diff --git a/src/main/java/org/apache/commons/csv/CSVPrinter.java b/src/main/java/org/apache/commons/csv/CSVPrinter.java index e8a9c815..8554d1ca 100644 --- a/src/main/java/org/apache/commons/csv/CSVPrinter.java +++ b/src/main/java/org/apache/commons/csv/CSVPrinter.java @@ -174,7 +174,7 @@ public class CSVPrinter implements Flushable, Closeable { } else { out.append(value, offset, offset + len); } - newRecord = false; + newRecord = false; } /* diff --git a/src/main/java/org/apache/commons/csv/Lexer.java b/src/main/java/org/apache/commons/csv/Lexer.java index 03cb8c34..4aa0f511 100644 --- a/src/main/java/org/apache/commons/csv/Lexer.java +++ b/src/main/java/org/apache/commons/csv/Lexer.java @@ -84,9 +84,9 @@ abstract class Lexer { * The current character must be the escape character. * On return, the next character is available by calling {@link ExtendedBufferedReader#getLastChar()} * on the input stream. - * - * @return the unescaped character (as an int) or {@link END_OF_STREAM} if char following the escape is invalid. - * @throws IOException if there is a problem reading the stream or the end of stream is detected: + * + * @return the unescaped character (as an int) or {@link END_OF_STREAM} if char following the escape is invalid. + * @throws IOException if there is a problem reading the stream or the end of stream is detected: * the escape character is not allowed at end of strem */ int readEscape() throws IOException { @@ -186,7 +186,7 @@ abstract class Lexer { boolean isCommentStart(final int c) { return c == commmentStart; } - + private boolean isMetaChar(final int c) { return c == delimiter || c == escape diff --git a/src/site/site.xml b/src/site/site.xml index 9b172a6b..99d9c149 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -31,7 +31,7 @@ - + diff --git a/src/site/xdoc/cvs-usage.xml b/src/site/xdoc/cvs-usage.xml index 3e50e232..ebccccac 100644 --- a/src/site/xdoc/cvs-usage.xml +++ b/src/site/xdoc/cvs-usage.xml @@ -1,5 +1,5 @@ -