Fixed main class

This commit is contained in:
Stuart Boston
2015-03-03 22:04:08 +00:00
parent 4f32632e52
commit 998c19f46b
2 changed files with 3 additions and 3 deletions
@@ -1064,7 +1064,7 @@ public class TheMovieDbApi {
* @return
* @throws MovieDbException
*/
public String getMovieReviews(int movieId, Integer page, String language, String... appendToResponse) throws MovieDbException {
public TmdbResultsList<Review> getMovieReviews(int movieId, Integer page, String language, String... appendToResponse) throws MovieDbException {
return tmdbMovies.getMovieReviews(movieId, page, language, appendToResponse);
}
@@ -40,8 +40,8 @@ Discover (Done)
/discover/movie Discover movies by different types of data like average rating, number of votes, genres and certifications.
/discover/tv Discover TV shows by different types of data like average rating, number of votes, genres, the network they aired on and air dates.
Find
*** /find/{id} The find method makes it easy to search for objects in our database by an external id.
Find (Done)
/find/{id} The find method makes it easy to search for objects in our database by an external id.
Genres (Done)
/genre/movie/list Get the list of movie genres.