diff options
author | PJ Fanning <fanningpj@apache.org> | 2024-02-16 15:25:24 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2024-02-16 15:25:24 +0000 |
commit | c871bb7b9fe73ef408204028d2266d759c880417 (patch) | |
tree | cad2b06d1876fdfbcc4680dfdd17b257b52a04ba /poi | |
parent | dc025d93657ff09ad8e74231806ece8ce3c82ae4 (diff) | |
download | poi-c871bb7b9fe73ef408204028d2266d759c880417.tar.gz poi-c871bb7b9fe73ef408204028d2266d759c880417.zip |
remove unused loggers - thanks to Ruby Hartono. This closes #588 and closes #589
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1915819 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r-- | poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java b/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java index 61797ad2f8..4d3c8e62dc 100644 --- a/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java +++ b/poi/src/main/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java @@ -25,17 +25,12 @@ import java.util.Objects; import java.util.function.Predicate; import java.util.stream.Stream; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - /** * Class POIFSDocumentPath */ public class POIFSDocumentPath { - private static final Logger LOGGER = LogManager.getLogger(POIFSDocumentPath.class); - private final String[] components; private int hashcode; //lazy-compute hashCode |