Style: Change order and visibility of nested class to private

This commit is contained in:
Lars Simon Winzer
2026-04-27 00:50:44 +02:00
parent b158be26e3
commit d36a78eee4
@@ -10,13 +10,13 @@ import org.junit.jupiter.api.Test;
public class EventBusTest {
private EventBus eventBus;
private class TestEvent implements Event {}
@BeforeEach
void setUp() {
eventBus = new EventBus();
}
static class TestEvent implements Event {}
@Test
void testSingleSubscriberReceivesEvent() {
AtomicBoolean called = new AtomicBoolean(false);