diff options
Diffstat (limited to 'src/main/javassist/bytecode/stackmap/MapMaker.java')
-rw-r--r-- | src/main/javassist/bytecode/stackmap/MapMaker.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/javassist/bytecode/stackmap/MapMaker.java b/src/main/javassist/bytecode/stackmap/MapMaker.java index f1bfbc4c..5c4d7a53 100644 --- a/src/main/javassist/bytecode/stackmap/MapMaker.java +++ b/src/main/javassist/bytecode/stackmap/MapMaker.java @@ -183,10 +183,10 @@ public class MapMaker extends Tracer { int pos = tb.position; int end = pos + tb.length; - while (pos < end) + while (pos < end) { pos += doOpcode(pos, code); - - traceException(code, tb.toCatch); + traceException(code, tb.toCatch); + } if (tb.exit != null) { for (int i = 0; i < tb.exit.length; i++) { |