You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2021/12/17 01:14:51 UTC

[logging-log4j2] branch log4j-2.12 updated: Remove unused imports.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch log4j-2.12
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/log4j-2.12 by this push:
     new 546a33b  Remove unused imports.
546a33b is described below

commit 546a33b4e901a067f4bf6db00bdc302e2f34ddf1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 16 20:14:41 2021 -0500

    Remove unused imports.
---
 .../main/java/org/apache/logging/log4j/core/lookup/JndiLookup.java | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/JndiLookup.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/JndiLookup.java
index 6cd54c7..bd19e54 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/JndiLookup.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/lookup/JndiLookup.java
@@ -16,16 +16,9 @@
  */
 package org.apache.logging.log4j.core.lookup;
 
-import java.util.Objects;
-
-import javax.naming.NamingException;
-
 import org.apache.logging.log4j.Logger;
-import org.apache.logging.log4j.Marker;
-import org.apache.logging.log4j.MarkerManager;
 import org.apache.logging.log4j.core.LogEvent;
 import org.apache.logging.log4j.core.config.plugins.Plugin;
-import org.apache.logging.log4j.core.net.JndiManager;
 import org.apache.logging.log4j.status.StatusLogger;
 
 /**