diff --git a/src/main/java/it/kamaladafrica/codicefiscale/city/impl/csv/SimpleCsvParser.java b/src/main/java/it/kamaladafrica/codicefiscale/city/impl/csv/SimpleCsvParser.java index b492e05..ccb3d07 100644 --- a/src/main/java/it/kamaladafrica/codicefiscale/city/impl/csv/SimpleCsvParser.java +++ b/src/main/java/it/kamaladafrica/codicefiscale/city/impl/csv/SimpleCsvParser.java @@ -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 @@ -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) { @@ -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 { @@ -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