Style: Add missing 'static' keyword to static variable

This commit is contained in:
Lars Simon Winzer
2026-03-20 17:12:55 +01:00
parent b19e923356
commit c6833b71e8
@@ -12,8 +12,7 @@ public class Session {
private final SessionId id;
private final TransportLayer transport;
private final BlockingQueue<PrimitiveResponse> responseQueue;
private final int RESPOND_QUEUE_SIZE = 32;
private static final int RESPOND_QUEUE_SIZE = 32;
/**
* Creates a new Session with the given transport and event bus.