File tree 1 file changed +1
-9
lines changed
1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -515,6 +515,7 @@ protected void parsePath() {
515
515
516
516
StringBuilder pathBuffer = new StringBuilder ();
517
517
518
+ // The states of the lexical sanner
518
519
enum LexState {
519
520
AFTER_CMD ,// Just after a command (i.e. a single alphabet)
520
521
NEUTRAL , // Neutral state, waiting for a number expression or a command
@@ -523,15 +524,6 @@ enum LexState {
523
524
EXP_HEAD , // On the head of the exponent part of a scientific notation; the '-' sign or a digit
524
525
EXP_TAIL , // On the integer expression in the exponent part
525
526
}
526
- /*
527
- * The state of the lexer:
528
- * -1: just after the command (i.e. a single alphabet)
529
- * 0: neutral state
530
- * 1: on a digit sequence for integer representation
531
- * 2: on a decimal
532
- * 3: on a digit or a sign in exponent in scientific notation, e.g. 3.14e-2)
533
- * 4: on a digit sequence in exponent
534
- */
535
527
LexState lexState = LexState .NEUTRAL ;
536
528
537
529
for (int i = 0 ; i < pathDataChars .length ; i ++) {
You can’t perform that action at this time.
0 commit comments