From 03a6b5031938b652bcc0f12dfba6713eea954578 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Sat, 13 Oct 2012 16:11:54 +0000 Subject: [PATCH] Add missing single-quote git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397878 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/csv/CSVFormat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index f9b28383..987d63d5 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -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) {