From c99e6d9ef62185ddbdb4f75c7fad4b5c34b8d130 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Wed, 20 Mar 2013 12:40:33 +0000 Subject: [PATCH] Format lines that are longer than 120 characters git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1458797 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/csv/Lexer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/Lexer.java b/src/main/java/org/apache/commons/csv/Lexer.java index 3cddffdd..622599bb 100644 --- a/src/main/java/org/apache/commons/csv/Lexer.java +++ b/src/main/java/org/apache/commons/csv/Lexer.java @@ -36,8 +36,8 @@ abstract class Lexer { /** * Constant char to use for disabling comments, escapes and encapsulation. The value -2 is used because it - * won't be confused with an EOF signal (-1), and because the Unicode value {@code FFFE} would be encoded as two chars - * (using surrogates) and thus there should never be a collision with a real text char. + * won't be confused with an EOF signal (-1), and because the Unicode value {@code FFFE} would be encoded as two + * chars (using surrogates) and thus there should never be a collision with a real text char. */ private static final char DISABLED = '\ufffe';