I have read several previously asked questions and answers on this topic [or quite similar], but none of them have really addressed this point-blank. When declaring a new boolean varibale, is it redundant [e.g. unnecessary] to initialize it to false?
boolean selectedZone = false;
versus just declaring
boolean selectedZone;
The other posts I have looked at are Why is Java's default value for Boolean set to true? and Default value of Boolean in java