diff --git a/source/net/filebot/web/TMDbClient.java b/source/net/filebot/web/TMDbClient.java index 51da1847..48cb526d 100644 --- a/source/net/filebot/web/TMDbClient.java +++ b/source/net/filebot/web/TMDbClient.java @@ -470,10 +470,6 @@ public class TMDbClient implements MovieIdentificationService, ArtworkProvider { return get(MovieProperty.overview); } - public boolean isAdult() { - return get(MovieProperty.adult, Boolean::valueOf); - } - public Integer getId() { return get(MovieProperty.id, Integer::new); } @@ -514,10 +510,6 @@ public class TMDbClient implements MovieIdentificationService, ArtworkProvider { return get(MovieProperty.homepage, URL::new); } - public URL getPoster() { - return get(MovieProperty.poster_path, URL::new); - } - public List getGenres() { return unmodifiableList(asList(genres)); }