Skip to content

Commit 2c0675e

Browse files
committed
Factories must be public
1 parent 22f9b3a commit 2c0675e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AsyncQueueFullPolicyFactoryTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public void testCreateDiscardingRouterThresholdLevelCustomizable() throws Except
9191
}
9292
}
9393

94-
static class CustomRouterDefaultConstructor implements AsyncQueueFullPolicy {
94+
public static class CustomRouterDefaultConstructor implements AsyncQueueFullPolicy {
9595
public CustomRouterDefaultConstructor() {
9696
}
9797

@@ -101,7 +101,7 @@ public EventRoute getRoute(final long backgroundThreadId, final Level level) {
101101
}
102102
}
103103

104-
static class DoesNotImplementInterface {
104+
public static class DoesNotImplementInterface {
105105
}
106106

107107
@Test

0 commit comments

Comments
 (0)