Reorder static final modifier

This commit is contained in:
AsamK 2023-11-10 14:03:13 +01:00
parent b20978e08e
commit c0aa338d7c
91 changed files with 137 additions and 137 deletions

View file

@ -26,7 +26,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
public class HttpServerHandler implements AutoCloseable {
private final static Logger logger = LoggerFactory.getLogger(HttpServerHandler.class);
private static final Logger logger = LoggerFactory.getLogger(HttpServerHandler.class);
private final ObjectMapper objectMapper = Util.createJsonObjectMapper();