#1145 Remove PlayerListener from visibility test exclusions

This commit is contained in:
Gabriele C 2017-03-26 19:39:40 +02:00
parent 49aeb4308d
commit 1f4192e5af

View File

@ -56,8 +56,7 @@ public class ClassesConsistencyTest {
/** Classes excluded from the field visibility test. */
private static final Set<Class<?>> CLASSES_EXCLUDED_FROM_VISIBILITY_TEST = ImmutableSet.of(
Whirlpool.class, // not our implementation, so we don't touch it
Columns.class, // uses non-final String constants, which is safe
PlayerListener.class // TODO #1145: Remove public field in favor of dedicated methods
Columns.class // uses non-final String constants, which is safe
);
/**