shownames are case sensitive again

This commit is contained in:
Reinhard Pointner 2008-01-09 19:20:47 +00:00
parent 4d3a538fa4
commit 5a490faca2
3 changed files with 3 additions and 3 deletions

View File

@ -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";

View File

@ -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";

View File

@ -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";