Possible Duplicate:
Recompile decompiled Java (JD / JAD) source that contains goto instructions
what’s the meaning of goto _L1 when i decompile class java
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The decompiler was not wise enough to handle some statements, most likely compiled try-catch-statements. So he resigns, and does something syntactically correct, but unlikely to be like this is the original source.
is just a Java statement meaning go to the instruction AFTER the block of code following the goto statement (This is mad, I know, but that is how Java implemented it).