remove debug code

This commit is contained in:
Volker Berlin 2019-04-02 20:57:00 +02:00
parent 209d72faec
commit cba37f1cef

View File

@ -190,7 +190,6 @@ class BranchManger {
if( nextBlock.op == JavaBlockOperator.GOTO && nextBlock.endPosition == nextPos && n > 1 ) { // Eclipse loop with wide goto_w
ParsedBlock prevBlock = allParsedOperations.get( n - 1 );
if( prevBlock.op == JavaBlockOperator.IF && prevBlock.endPosition == nextBlock.nextPosition ) {
System.err.println( nextBlock );
int conditionStart = parsedBlock.endPosition;
int conditionEnd = prevBlock.nextPosition;
convertToLoop( parsedBlock, conditionStart, conditionEnd );