From 882884f28a5c7e51bcd9b3b1f24aed7366fc9511 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Mon, 12 Sep 2022 09:34:15 -0700 Subject: [PATCH] Fix formatting --- src/main/java/org/apache/commons/csv/CSVParser.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java b/src/main/java/org/apache/commons/csv/CSVParser.java index 94e1dd04..3c681bd3 100644 --- a/src/main/java/org/apache/commons/csv/CSVParser.java +++ b/src/main/java/org/apache/commons/csv/CSVParser.java @@ -604,6 +604,7 @@ public final class CSVParser implements Iterable, Closeable { public List getHeaderNames() { return Collections.unmodifiableList(headers.headerNames); } + /** * Checks whether there is a header comment. * The header comment appears before the header record. @@ -619,6 +620,7 @@ public final class CSVParser implements Iterable, Closeable { public boolean hasHeaderComment() { return headerComment != null; } + /** * Returns the header comment, if any. * The header comment appears before the header record. @@ -629,6 +631,7 @@ public final class CSVParser implements Iterable, Closeable { public String getHeaderComment() { return headerComment; } + /** * Checks whether there is a trailer comment. * Trailer comments are located between the last record and EOF. @@ -641,6 +644,7 @@ public final class CSVParser implements Iterable, Closeable { public boolean hasTrailerComment() { return trailerComment != null; } + /** * Returns the trailer comment, if any. * Trailer comments are located between the last record and EOF @@ -651,6 +655,7 @@ public final class CSVParser implements Iterable, Closeable { public String getTrailerComment() { return trailerComment; } + /** * Returns the current record number in the input stream. *