CR and LF are already statically imported
This commit is contained in:
parent
7694e8f999
commit
e5b2413ca7
|
@ -38,8 +38,8 @@ import java.io.IOException;
|
|||
*/
|
||||
final class Lexer implements Closeable {
|
||||
|
||||
private static final String CR_STRING = Character.toString(Constants.CR);
|
||||
private static final String LF_STRING = Character.toString(Constants.LF);
|
||||
private static final String CR_STRING = Character.toString(CR);
|
||||
private static final String LF_STRING = Character.toString(LF);
|
||||
|
||||
/**
|
||||
* Constant char to use for disabling comments, escapes and encapsulation. The value -2 is used because it
|
||||
|
|
Loading…
Reference in New Issue