Introduce "Absolute Airdate Order" to improve support for "Match by Airdate Number (e.g. 20161231)" and "Match by Episode Title" kind of use case

This commit is contained in:
Reinhard Pointner 2017-02-17 21:28:50 +08:00
parent a513cf556a
commit 21d562eadd
1 changed files with 1 additions and 4 deletions

View File

@ -39,12 +39,9 @@ public class TheTVDBClientV1 extends AbstractEpisodeListProvider implements Artw
private static final Map<MirrorType, String> mirrors = MirrorType.newMap();
private final String apikey;
private String apikey;
public TheTVDBClientV1(String apikey) {
if (apikey == null)
throw new NullPointerException("apikey must not be null");
this.apikey = apikey;
}