(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)