This is an automated email from the ASF dual-hosted git repository. rcordier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 7e79914287ec906281d228f246bcc9a06a1a06aa Author: Benoit TELLIER <btell...@linagora.com> AuthorDate: Wed Oct 9 16:43:05 2024 +0200 [REFACTORING] drop unused logger --- .../james/imap/message/response/UnpooledStatusResponseFactory.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/protocols/imap/src/main/java/org/apache/james/imap/message/response/UnpooledStatusResponseFactory.java b/protocols/imap/src/main/java/org/apache/james/imap/message/response/UnpooledStatusResponseFactory.java index 189848e9dc..41e2e78937 100644 --- a/protocols/imap/src/main/java/org/apache/james/imap/message/response/UnpooledStatusResponseFactory.java +++ b/protocols/imap/src/main/java/org/apache/james/imap/message/response/UnpooledStatusResponseFactory.java @@ -26,16 +26,10 @@ import org.apache.james.imap.api.message.response.StatusResponse; import org.apache.james.imap.api.message.response.StatusResponse.ResponseCode; import org.apache.james.imap.api.message.response.StatusResponse.Type; import org.apache.james.imap.api.message.response.StatusResponseFactory; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; public class UnpooledStatusResponseFactory extends AbstractStatusResponseFactory implements StatusResponseFactory { - - private static final Logger LOGGER = LoggerFactory.getLogger(UnpooledStatusResponseFactory.class); - @Override protected StatusResponse createResponse(Type type, Tag tag, ImapCommand command, HumanReadableText displayTextKey, ResponseCode code) { return new ImmutableStatusResponse(type, tag, command, displayTextKey, code); } - } --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org For additional commands, e-mail: notifications-h...@james.apache.org