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; }