shownames are case sensitive again
This commit is contained in:
parent
4d3a538fa4
commit
5a490faca2
|
@ -24,7 +24,7 @@ import org.xml.sax.SAXException;
|
|||
|
||||
public class AnidbSearchEngine extends SearchEngine {
|
||||
|
||||
private Map<String, URL> cache = Collections.synchronizedMap(new TreeMap<String, URL>(String.CASE_INSENSITIVE_ORDER));
|
||||
private Map<String, URL> cache = Collections.synchronizedMap(new TreeMap<String, URL>());
|
||||
|
||||
private String host = "anidb.info";
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ import org.xml.sax.SAXException;
|
|||
|
||||
public class TVRageSearchEngine extends SearchEngine {
|
||||
|
||||
private Map<String, URL> cache = Collections.synchronizedMap(new TreeMap<String, URL>(String.CASE_INSENSITIVE_ORDER));
|
||||
private Map<String, URL> cache = Collections.synchronizedMap(new TreeMap<String, URL>());
|
||||
|
||||
private String host = "www.tvrage.com";
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ import org.xml.sax.SAXException;
|
|||
|
||||
public class TvdotcomSearchEngine extends SearchEngine {
|
||||
|
||||
private Map<String, URL> cache = Collections.synchronizedMap(new TreeMap<String, URL>(String.CASE_INSENSITIVE_ORDER));
|
||||
private Map<String, URL> cache = Collections.synchronizedMap(new TreeMap<String, URL>());
|
||||
|
||||
private String host = "www.tv.com";
|
||||
|
||||
|
|
Loading…
Reference in New Issue