method is much shorter! What happened?
final variable DEBUG was false. Since this is a final variable, its value is known at compile-time, and the compiler can effectively remove any code that would not be executed because of DEBUG’s value being false. Even if the value of the final variable DEBUG were true, the bytecode would still be smaller than the original case.