puzzlesolver: Method can be private

This commit is contained in:
sdburns1998
2019-07-07 17:55:23 +02:00
parent a1b233056b
commit 622fe2e06e

View File

@@ -29,7 +29,7 @@ public class LightboxSolver
private LightboxState initial;
private final LightboxState[] switches = new LightboxState[LightBox.COMBINATIONS_POWER];
static boolean isBitSet(int num, int bit)
private static boolean isBitSet(int num, int bit)
{
return ((num >>> bit) & 1) != 0;
}