Sometimes when you are debugging, you have unreachable code fragment. Is there anyway to suppress the warning?
The only way to do this on any compiler is @SuppressWarnings("all").
@SuppressWarnings("all")
If you're using Eclipse, try @SuppressWarnings("unused").
@SuppressWarnings("unused")