From cba37f1cef5780d2b8915e1bd9db31d2c8ee5ab4 Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Tue, 2 Apr 2019 20:57:00 +0200 Subject: [PATCH] remove debug code --- src/de/inetsoftware/jwebassembly/module/BranchManger.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/de/inetsoftware/jwebassembly/module/BranchManger.java b/src/de/inetsoftware/jwebassembly/module/BranchManger.java index b81de36..6dca220 100644 --- a/src/de/inetsoftware/jwebassembly/module/BranchManger.java +++ b/src/de/inetsoftware/jwebassembly/module/BranchManger.java @@ -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 );