Skip to content

Commit dc7a719

Browse files
committed
Rename constant.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397772 13f79535-47bb-0310-9956-ffa450edef68
1 parent bb7d696 commit dc7a719

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323
class Constants {
2424

25-
static final char BELL = '\b';
25+
static final char BACKSPACE = '\b';
2626
static final char COMMA = ',';
2727

2828
/**

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
package org.apache.commons.csv;
1919

20-
import static org.apache.commons.csv.Constants.BELL;
20+
import static org.apache.commons.csv.Constants.BACKSPACE;
2121
import static org.apache.commons.csv.Constants.CR;
2222
import static org.apache.commons.csv.Constants.END_OF_STREAM;
2323
import static org.apache.commons.csv.Constants.FF;
@@ -79,7 +79,7 @@ int readEscape() throws IOException {
7979
case 't':
8080
return TAB;
8181
case 'b':
82-
return BELL;
82+
return BACKSPACE;
8383
case 'f':
8484
return FF;
8585
case END_OF_STREAM:

0 commit comments

Comments
 (0)