diff --git a/themoviedbapi/src/com/moviejukebox/themoviedb/TheMovieDb.java b/themoviedbapi/src/com/moviejukebox/themoviedb/TheMovieDb.java index c7039194e..5dd7be1cf 100644 --- a/themoviedbapi/src/com/moviejukebox/themoviedb/TheMovieDb.java +++ b/themoviedbapi/src/com/moviejukebox/themoviedb/TheMovieDb.java @@ -483,9 +483,7 @@ public class TheMovieDb { * @return The matching movie */ public static MovieDB findMovie(Collection movieList, String title, String year) { - if ((movieList == null) || (movieList.isEmpty()) - || (!isValidString(title)) - || (!isValidString(year))) { + if ((movieList == null) || (movieList.isEmpty()) || (!isValidString(title))) { return null; }