Is it possible to somehow ignore this error? I find it much easier to just put return in front of the code I don’t want to run than to comment it (when the comments overlap and behave badly)…
Is it possible to somehow ignore this error? I find it much easier to
Share
No. It’s a compile time error. So you must get rid of it before running your class.
What I usually do is put a fake
ifstatement in front of it. Something like:With this code, you will not get a
Unreachable statementerror. And you will get what you want.