(Related question: http://stackoverflow.com/questions/992930/java-compilers-or-jvm-languages-that-support-goto)
I have decompiled a jar (Legally, for debugging purposes) and want to recompile it.
I've used both JAD and JD and both don't compile due to goto instructions
E.g.
goto _L1
...
L1:
return true;
Is there an easy way (or any way) to recompile it? (Except to manually refactor and remove the goto's)
gotousing exceptions, but it wouldn't be pretty. Some other cheats are collected here: stackoverflow.com/questions/2430782/… – BRPocock Dec 12 '11 at 21:40