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:
Sebastian Bazley 2012-10-13 16:11:54 +00:00
parent 933a950c88
commit 03a6b50319
1 changed files with 1 additions and 1 deletions

View File

@ -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) {