- Revision
- 1309
- Author
- rfscholte
- Date
- 2011-09-04 09:23:17 -0500 (Sun, 04 Sep 2011)
Log Message
remove useless if-statement from ASSIGNMENT "}", because it is always true.
Modified Paths
Diff
Modified: trunk/qdox/src/grammar/lexer.flex (1308 => 1309)
--- trunk/qdox/src/grammar/lexer.flex 2011-09-04 12:44:47 UTC (rev 1308) +++ trunk/qdox/src/grammar/lexer.flex 2011-09-04 14:23:17 UTC (rev 1309) @@ -421,11 +421,9 @@ } "}" { codeBody.append('}'); - if (anonymousMode) { - nestingDepth--; - if (nestingDepth==assignmentDepth) { - anonymousMode=false; - } + nestingDepth--; + if (nestingDepth==assignmentDepth) { + anonymousMode=false; } }
To unsubscribe from this list please visit:
