From 80414b7c2ab65b9d223bade79443816c3c0b78a2 Mon Sep 17 00:00:00 2001 From: Stuart Boston Date: Sun, 8 Nov 2015 19:06:24 +0000 Subject: [PATCH] Update main API --- .../java/com/omertron/themoviedbapi/TheMovieDbApi.java | 8 ++++---- .../com/omertron/themoviedbapi/methods/TmdbTVTest.java | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java b/src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java index bef7e1a9c..6d1632bb3 100644 --- a/src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java +++ b/src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java @@ -1622,7 +1622,7 @@ public class TheMovieDbApi { * @return * @throws com.omertron.themoviedbapi.MovieDbException */ - public ResultList getTVOnTheAir(Integer page, String language) throws MovieDbException { + public ResultList getTVOnTheAir(Integer page, String language) throws MovieDbException { return tmdbTv.getTVOnTheAir(page, language); } @@ -1637,7 +1637,7 @@ public class TheMovieDbApi { * @return * @throws com.omertron.themoviedbapi.MovieDbException */ - public ResultList getTVAiringToday(Integer page, String language, String timezone) throws MovieDbException { + public ResultList getTVAiringToday(Integer page, String language, String timezone) throws MovieDbException { return tmdbTv.getTVAiringToday(page, language, timezone); } @@ -1654,7 +1654,7 @@ public class TheMovieDbApi { * @return * @throws com.omertron.themoviedbapi.MovieDbException */ - public ResultList getTVTopRated(Integer page, String language) throws MovieDbException { + public ResultList getTVTopRated(Integer page, String language) throws MovieDbException { return tmdbTv.getTVTopRated(page, language); } @@ -1666,7 +1666,7 @@ public class TheMovieDbApi { * @return * @throws com.omertron.themoviedbapi.MovieDbException */ - public ResultList getTVPopular(Integer page, String language) throws MovieDbException { + public ResultList getTVPopular(Integer page, String language) throws MovieDbException { return tmdbTv.getTVPopular(page, language); } // diff --git a/src/test/java/com/omertron/themoviedbapi/methods/TmdbTVTest.java b/src/test/java/com/omertron/themoviedbapi/methods/TmdbTVTest.java index 54a947e43..e1a9b47ee 100644 --- a/src/test/java/com/omertron/themoviedbapi/methods/TmdbTVTest.java +++ b/src/test/java/com/omertron/themoviedbapi/methods/TmdbTVTest.java @@ -39,7 +39,6 @@ import com.omertron.themoviedbapi.model.media.Translation; import com.omertron.themoviedbapi.model.media.Video; import com.omertron.themoviedbapi.model.person.ContentRating; import com.omertron.themoviedbapi.model.person.ExternalID; -import com.omertron.themoviedbapi.model.tv.TVBasic; import com.omertron.themoviedbapi.model.tv.TVInfo; import com.omertron.themoviedbapi.results.ResultList; import com.omertron.themoviedbapi.tools.MethodBase;