Skip to content

Commit 03a6b50

Browse files
committed
Add missing single-quote
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397878 13f79535-47bb-0310-9956-ffa450edef68
1 parent 933a950 commit 03a6b50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ private static boolean isLineBreak(final Character c) {
174174
*/
175175
void validate() throws IllegalStateException {
176176
if (delimiter == encapsulator) {
177-
throw new IllegalStateException("The encapsulator character and the delimiter cannot be the same ('" + encapsulator + ")");
177+
throw new IllegalStateException("The encapsulator character and the delimiter cannot be the same ('" + encapsulator + "')");
178178
}
179179

180180
if (delimiter == escape) {

0 commit comments

Comments
 (0)