This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-csv.git
The following commit(s) were added to refs/heads/master by this push: new 7ff3e14 Javadoc formatting. 7ff3e14 is described below commit 7ff3e14813e65864be764db611f8a4a446655cd0 Author: aherbert <aherb...@apache.org> AuthorDate: Tue Jan 21 13:07:19 2020 +0000 Javadoc formatting. --- src/main/java/org/apache/commons/csv/CSVRecord.java | 10 +++++++--- .../java/org/apache/commons/csv/issues/JiraCsv248Test.java | 4 ++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVRecord.java b/src/main/java/org/apache/commons/csv/CSVRecord.java index a8cad90..614bb64 100644 --- a/src/main/java/org/apache/commons/csv/CSVRecord.java +++ b/src/main/java/org/apache/commons/csv/CSVRecord.java @@ -83,11 +83,13 @@ public final class CSVRecord implements Serializable, Iterable<String> { /** * Returns a value by name. * - * <p>Note: This requires a field mapping obtained from the original parser. + * <p> + * Note: This requires a field mapping obtained from the original parser. * A check using {@link #isMapped(String)} should be used to determine if a - * mapping exists from the provide {@code name} to a field index. In this case an + * mapping exists from the provided {@code name} to a field index. In this case an * exception will only be thrown if the record does not contain a field corresponding * to the mapping, that is the record length is not consistent with the mapping size. + * </p> * * @param name * the name of the column to be retrieved. @@ -150,8 +152,10 @@ public final class CSVRecord implements Serializable, Iterable<String> { /** * Returns the parser. * - * <p>Note: The parser is not part of the serialized state of the record. A null check + * <p> + * Note: The parser is not part of the serialized state of the record. A null check * should be used when the record may have originated from a serialized form. + * </p> * * @return the parser. * @since 1.7 diff --git a/src/test/java/org/apache/commons/csv/issues/JiraCsv248Test.java b/src/test/java/org/apache/commons/csv/issues/JiraCsv248Test.java index c39842f..efbe09f 100644 --- a/src/test/java/org/apache/commons/csv/issues/JiraCsv248Test.java +++ b/src/test/java/org/apache/commons/csv/issues/JiraCsv248Test.java @@ -31,7 +31,7 @@ import java.io.ObjectInputStream; public class JiraCsv248Test { /** - * Test deserialisation of a CSVRecord create using version 1.6. + * Test deserialisation of a CSVRecord created using version 1.6. * * <p>This test asserts that serialization from 1.8 onwards is consistent with * previous versions. Serialization was broken in version 1.7. @@ -77,4 +77,4 @@ public class JiraCsv248Test { private static InputStream getTestInput() { return ClassLoader.getSystemClassLoader().getResourceAsStream("CSV-248/csvRecord.bin"); } -} \ No newline at end of file +}