From 82ff30fefce868056147f6324156f157165df954 Mon Sep 17 00:00:00 2001 From: Andrea Di Cesare Date: Fri, 27 Oct 2023 10:38:21 +0200 Subject: [PATCH] :recycle: Remove unused LOGGER in MongoRequestPropsInjector --- .../restheart/mongodb/exchange/MongoRequestPropsInjector.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mongodb/src/main/java/org/restheart/mongodb/exchange/MongoRequestPropsInjector.java b/mongodb/src/main/java/org/restheart/mongodb/exchange/MongoRequestPropsInjector.java index ca51731d4..bfcdd38f9 100644 --- a/mongodb/src/main/java/org/restheart/mongodb/exchange/MongoRequestPropsInjector.java +++ b/mongodb/src/main/java/org/restheart/mongodb/exchange/MongoRequestPropsInjector.java @@ -51,8 +51,6 @@ import org.restheart.mongodb.utils.MongoURLUtils; import org.restheart.utils.HttpStatus; import org.restheart.utils.BsonUtils; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; /** * initialize the MongoRequest @@ -61,8 +59,6 @@ * @author Andrea Di Cesare {@literal } */ public class MongoRequestPropsInjector { - static final Logger LOGGER = LoggerFactory.getLogger(MongoRequestPropsInjector.class); - private static final int DEFAULT_PAGESIZE = MongoServiceConfiguration.get().getDefaultPagesize(); private static final int MAX_PAGESIZE = MongoServiceConfiguration.get().getMaxPagesize();