@@ -175,12 +175,12 @@ public void consume() {
175
175
176
176
// clearConsumeState();
177
177
skipWhile (CharFilter .WHITESPACE );
178
- char c = peek ();
179
- if (c == '/' ) { // comment or doc?
178
+ int cp = peek ();
179
+ if (cp == '/' ) { // comment or doc?
180
180
next ();
181
181
parseDocOrComment ();
182
182
consume ();
183
- } else if (c == '@' ) { // annotation?
183
+ } else if (cp == '@' ) { // annotation?
184
184
next ();
185
185
getElementComment ();
186
186
parseAnnotations ();
@@ -332,8 +332,8 @@ CodeExpression parseAssignmentValue() {
332
332
List <CodeExpression > expressions = null ;
333
333
while (true ) {
334
334
parseWhitespacesAndComments ();
335
- char c = peek ();
336
- if (CHAR_FILTER_OPERATOR .accept (c )) {
335
+ int cp = peek ();
336
+ if (CHAR_FILTER_OPERATOR .accept (cp )) {
337
337
String operatorName = readWhile (CHAR_FILTER_OPERATOR );
338
338
CodeOperator nextOperator = BaseOperator .of (operatorName );
339
339
if (operator == null ) {
@@ -431,14 +431,14 @@ private String getQualifiedName(String name) {
431
431
432
432
private void parseDocOrComment () {
433
433
434
- char c = peek ();
435
- if (c == '/' ) {
434
+ int cp = peek ();
435
+ if (cp == '/' ) {
436
436
String docLine = readLine (true );
437
437
this .comments .add (new BaseSingleLineComment (docLine ));
438
- } else if (c == '*' ) {
438
+ } else if (cp == '*' ) {
439
439
next ();
440
- c = peek ();
441
- if (c == '*' ) { // JavaDoc or regular comment
440
+ cp = peek ();
441
+ if (cp == '*' ) { // JavaDoc or regular comment
442
442
next ();
443
443
if (!this .javaDocLines .isEmpty ()) {
444
444
LOG .warn ("Duplicate JavaDoc in {}." , this .file );
@@ -451,7 +451,7 @@ private void parseDocOrComment() {
451
451
this .comments .add (comment );
452
452
}
453
453
} else {
454
- LOG .warn ("Illegal language: {} in {}." , "/" + c , this .file );
454
+ LOG .warn ("Illegal language: {} in {}." , "/" + cp , this .file );
455
455
}
456
456
}
457
457
@@ -466,11 +466,11 @@ private void parseDocOrBlockComment(List<String> lines) {
466
466
}
467
467
while (true ) {
468
468
skipWhile (CharFilter .WHITESPACE );
469
- char c = peek ();
470
- if (c == '*' ) {
469
+ int cp = peek ();
470
+ if (cp == '*' ) {
471
471
next ();
472
- c = peek ();
473
- if (c == '/' ) {
472
+ cp = peek ();
473
+ if (cp == '/' ) {
474
474
next ();
475
475
skipWhile (CharFilter .WHITESPACE );
476
476
return ;
@@ -509,26 +509,26 @@ protected CodeModifiers parseModifiers(boolean inInterface) {
509
509
boolean found = true ;
510
510
while (found ) {
511
511
skipWhile (CharFilter .WHITESPACE );
512
- char c = peek ();
513
- if (c == 'a' ) {
512
+ int cp = peek ();
513
+ if (cp == 'a' ) {
514
514
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_ABSTRACT );
515
- } else if (c == 'd' ) {
515
+ } else if (cp == 'd' ) {
516
516
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_DEFAULT );
517
- } else if (c == 'n' ) {
517
+ } else if (cp == 'n' ) {
518
518
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_NATIVE );
519
- } else if (c == 'f' ) {
519
+ } else if (cp == 'f' ) {
520
520
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_FINAL );
521
- } else if (c == 'v' ) {
521
+ } else if (cp == 'v' ) {
522
522
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_VOLATILE );
523
- } else if (c == 's' ) {
523
+ } else if (cp == 's' ) {
524
524
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_STATIC );
525
525
if (!found ) {
526
526
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_SYNCHRONIZED );
527
527
if (!found ) {
528
528
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_SYNCHRONIZED );
529
529
}
530
530
}
531
- } else if (c == 't' ) {
531
+ } else if (cp == 't' ) {
532
532
found = parseModifierKeyword (modifiers , CodeModifiers .KEY_TRANSIENT );
533
533
} else {
534
534
found = false ;
0 commit comments