From efb9f1a8b795bb4daccbe903518d01095fc3503c Mon Sep 17 00:00:00 2001 From: reger Date: Thu, 12 May 2016 00:13:57 +0200 Subject: [PATCH] save resource for unused blacklistFiles map --- htroot/Blacklist_p.html | 2 +- source/net/yacy/repository/Blacklist.java | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/htroot/Blacklist_p.html b/htroot/Blacklist_p.html index 2f7b6691f..6c032c2a3 100644 --- a/htroot/Blacklist_p.html +++ b/htroot/Blacklist_p.html @@ -163,7 +163,7 @@
- Settings for this list + Settings for this list #[currentBlacklist]#
diff --git a/source/net/yacy/repository/Blacklist.java b/source/net/yacy/repository/Blacklist.java index f1c11cfb0..0289ab86a 100644 --- a/source/net/yacy/repository/Blacklist.java +++ b/source/net/yacy/repository/Blacklist.java @@ -39,7 +39,6 @@ import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.Set; -import java.util.TreeMap; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import java.util.regex.Pattern; @@ -99,7 +98,6 @@ public class Blacklist { } private File blacklistRootPath = null; - private Map blacklistFiles = new TreeMap(); private final ConcurrentMap cachedUrlHashs; private final ConcurrentMap>> hostpaths_matchable; // key=host, value=path; mapped url is http://host/path; path does not start with '/' here private final ConcurrentMap>> hostpaths_notmatchable; // key=host, value=path; mapped url is http://host/path; path does not start with '/' here @@ -170,7 +168,6 @@ public class Blacklist { for (final HandleSet entry : this.cachedUrlHashs.values()) { entry.clear(); } - blacklistFiles.clear(); } public final int size() { @@ -201,9 +198,6 @@ public class Blacklist { * @param sep */ private void loadList(final BlacklistFile blFile, final String sep) { - if (!blacklistFiles.containsKey(blFile.getType())) { - blacklistFiles.put(blFile.getType(), blFile.getFileName()); - } final Map> blacklistMapMatch = getBlacklistMap(blFile.getType(), true); final Map> blacklistMapNotMatch = getBlacklistMap(blFile.getType(), false);