Skip to content

Commit

Permalink
doc: fix javadoc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kamaladafrica committed Sep 18, 2023
1 parent d4361fa commit bb6df84
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public SimpleCsvParser(char separator, char quotechar, char escape, boolean stri
*
* @param separator the delimiter to use for separating entries
* @param quotechar the character to use for quoted elements
* @param escapeCSVException the character to use for escaping a separator
* @param escape the character to use for escaping a separator
* or quote
* @param strictQuotes if true, characters outside the quotes are
* ignored
Expand All @@ -154,6 +154,7 @@ public SimpleCsvParser(char separator, char quotechar, char escape, boolean stri
* ignored
* @param ignoreLeadingWhiteSpace if true, white space in front of a quote in a
* field is ignored
* @param ignoreQuotations if true quotations are ignored
*/
public SimpleCsvParser(char separator, char quotechar, char escape, boolean strictQuotes,
boolean ignoreLeadingWhiteSpace, boolean ignoreQuotations) {
Expand Down Expand Up @@ -191,9 +192,8 @@ public boolean isPending() {
* Parses an incoming String and returns an array of elements.
*
* @param nextLine the string to parse
* @param multi multiline
* @return the comma-tokenized list of elements, or null if nextLine is null
* @throws CSVException if bad things happen during the read
* @throws CsvException if bad things happen during the read
*/
public String[] parseLine(String nextLine) throws CsvException {

Expand Down Expand Up @@ -327,7 +327,7 @@ protected boolean isNextCharacterEscapable(String nextLine, boolean inQuotes, in
}

/**
* precondition: sb.length() > 0
* precondition: sb.length() > 0
*
* @param sb A sequence of characters to examine
* @return true if every character in the sequence is whitespace
Expand Down

0 comments on commit bb6df84

Please sign in to comment.