Fix formatting
This commit is contained in:
parent
9c702bd405
commit
882884f28a
|
@ -604,6 +604,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
||||||
public List<String> getHeaderNames() {
|
public List<String> getHeaderNames() {
|
||||||
return Collections.unmodifiableList(headers.headerNames);
|
return Collections.unmodifiableList(headers.headerNames);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks whether there is a header comment.
|
* Checks whether there is a header comment.
|
||||||
* The header comment appears before the header record.
|
* The header comment appears before the header record.
|
||||||
|
@ -619,6 +620,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
||||||
public boolean hasHeaderComment() {
|
public boolean hasHeaderComment() {
|
||||||
return headerComment != null;
|
return headerComment != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the header comment, if any.
|
* Returns the header comment, if any.
|
||||||
* The header comment appears before the header record.
|
* The header comment appears before the header record.
|
||||||
|
@ -629,6 +631,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
||||||
public String getHeaderComment() {
|
public String getHeaderComment() {
|
||||||
return headerComment;
|
return headerComment;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks whether there is a trailer comment.
|
* Checks whether there is a trailer comment.
|
||||||
* Trailer comments are located between the last record and EOF.
|
* Trailer comments are located between the last record and EOF.
|
||||||
|
@ -641,6 +644,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
||||||
public boolean hasTrailerComment() {
|
public boolean hasTrailerComment() {
|
||||||
return trailerComment != null;
|
return trailerComment != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the trailer comment, if any.
|
* Returns the trailer comment, if any.
|
||||||
* Trailer comments are located between the last record and EOF
|
* Trailer comments are located between the last record and EOF
|
||||||
|
@ -651,6 +655,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
||||||
public String getTrailerComment() {
|
public String getTrailerComment() {
|
||||||
return trailerComment;
|
return trailerComment;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the current record number in the input stream.
|
* Returns the current record number in the input stream.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue