From 1f4192e5afda73709bf13611ed5969c99c31aced Mon Sep 17 00:00:00 2001 From: Gabriele C Date: Sun, 26 Mar 2017 19:39:40 +0200 Subject: [PATCH] #1145 Remove PlayerListener from visibility test exclusions --- src/test/java/fr/xephi/authme/ClassesConsistencyTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/java/fr/xephi/authme/ClassesConsistencyTest.java b/src/test/java/fr/xephi/authme/ClassesConsistencyTest.java index 769f0ae88..ac0504888 100644 --- a/src/test/java/fr/xephi/authme/ClassesConsistencyTest.java +++ b/src/test/java/fr/xephi/authme/ClassesConsistencyTest.java @@ -56,8 +56,7 @@ public class ClassesConsistencyTest { /** Classes excluded from the field visibility test. */ private static final Set> 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 ); /**