Index: adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/MoreBlockingPreferenceCategory.java |
=================================================================== |
--- a/adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/MoreBlockingPreferenceCategory.java |
+++ b/adblockplussbrowser/src/org/adblockplus/sbrowser/contentblocker/MoreBlockingPreferenceCategory.java |
@@ -52,17 +52,17 @@ public class MoreBlockingPreferenceCateg |
private static final String[] WHITELISTED_LIST_URLS = |
{ |
"https://easylist-downloads.adblockplus.org/easyprivacy.txt", |
"https://easylist-downloads.adblockplus.org/malwaredomains_full.txt", |
"https://easylist-downloads.adblockplus.org/antiadblockfilters.txt", |
"https://easylist-downloads.adblockplus.org/fanboy-social.txt" |
}; |
- private static final HashMap<String, Integer> URL_TO_RES_ID_MAP = new HashMap<String, Integer>(); |
+ private static final HashMap<String, Integer> URL_TO_RES_ID_MAP = new HashMap<>(); |
static |
{ |
for (int i = 0; i < WHITELISTED_LIST_TITLES.length; i++) |
{ |
URL_TO_RES_ID_MAP.put(WHITELISTED_LIST_URLS[i], WHITELISTED_LIST_TITLES[i]); |
} |
} |