From 4822e259cf52105c2a7a69d93db45d7cd7eb99d1 Mon Sep 17 00:00:00 2001 From: jochen Date: Sun, 7 Mar 1999 15:00:21 +0000 Subject: [PATCH] bug fixes (wide opcodes) git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@333 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/obfuscator/MethodIdentifier.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jode/jode/obfuscator/MethodIdentifier.java b/jode/jode/obfuscator/MethodIdentifier.java index 73a4a2f..6b43d2e 100644 --- a/jode/jode/obfuscator/MethodIdentifier.java +++ b/jode/jode/obfuscator/MethodIdentifier.java @@ -95,6 +95,7 @@ public class MethodIdentifier extends Identifier implements Opcodes { default: throw new ClassFormatError("Invalid wide opcode "+opcode); } + break; } case opc_ret: stream.skip(1); @@ -593,6 +594,7 @@ public class MethodIdentifier extends Identifier implements Opcodes { default: throw new ClassFormatError("Invalid wide opcode "+opcode); } + break; } case opc_tableswitch: { int length = 7-(addr % 4);