Add missing single-quote
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397878 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
933a950c88
commit
03a6b50319
|
@ -174,7 +174,7 @@ public class CSVFormat implements Serializable {
|
|||
*/
|
||||
void validate() throws IllegalStateException {
|
||||
if (delimiter == encapsulator) {
|
||||
throw new IllegalStateException("The encapsulator character and the delimiter cannot be the same ('" + encapsulator + ")");
|
||||
throw new IllegalStateException("The encapsulator character and the delimiter cannot be the same ('" + encapsulator + "')");
|
||||
}
|
||||
|
||||
if (delimiter == escape) {
|
||||
|
|
Loading…
Reference in New Issue