From 21d562eaddde068f4a3be3fb8ec6415996ff213c Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Fri, 17 Feb 2017 21:28:50 +0800 Subject: [PATCH] Introduce "Absolute Airdate Order" to improve support for "Match by Airdate Number (e.g. 20161231)" and "Match by Episode Title" kind of use case --- source/net/filebot/web/TheTVDBClientV1.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source/net/filebot/web/TheTVDBClientV1.java b/source/net/filebot/web/TheTVDBClientV1.java index e55b74d3..faccc094 100644 --- a/source/net/filebot/web/TheTVDBClientV1.java +++ b/source/net/filebot/web/TheTVDBClientV1.java @@ -39,12 +39,9 @@ public class TheTVDBClientV1 extends AbstractEpisodeListProvider implements Artw private static final Map 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; }