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

[logging-log4j2] 03/05: Remove unused imports.

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

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

commit 86e60b508c133a5e8fbaf23af4d7193e830945a9
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;
 
 /**