From 8572433707fcccd722a0df29e8450142562b76df Mon Sep 17 00:00:00 2001 From: Stuart Boston Date: Tue, 14 Oct 2014 14:28:28 +0100 Subject: [PATCH] Unused method parameters --- src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java | 2 ++ .../com/omertron/themoviedbapi/results/AbstractResults.java | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java b/src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java index ec62ff514..d6ebfe41d 100644 --- a/src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java +++ b/src/main/java/com/omertron/themoviedbapi/TheMovieDbApi.java @@ -1455,6 +1455,7 @@ public class TheMovieDbApi { * @throws MovieDbException */ public void getPersonChanges(int personId, String startDate, String endDate) throws MovieDbException { + LOG.trace("getPersonChanges: id: {}, start: {}, end: {}", personId, startDate, endDate); throw new MovieDbException(MovieDbExceptionType.UNKNOWN_CAUSE, "Not implemented yet", ""); } @@ -2189,6 +2190,7 @@ public class TheMovieDbApi { } public void getPersonChangesList(int page, String startDate, String endDate) throws MovieDbException { + LOG.trace("getPersonChangesList: page: {}, start: {}, end: {}", page, startDate, endDate); throw new MovieDbException(MovieDbExceptionType.UNKNOWN_CAUSE, "Not implemented yet", ""); } // diff --git a/src/main/java/com/omertron/themoviedbapi/results/AbstractResults.java b/src/main/java/com/omertron/themoviedbapi/results/AbstractResults.java index 9278ba51c..7926f5e8d 100644 --- a/src/main/java/com/omertron/themoviedbapi/results/AbstractResults.java +++ b/src/main/java/com/omertron/themoviedbapi/results/AbstractResults.java @@ -73,8 +73,12 @@ public abstract class AbstractResults { } // + /** + * This wrapper does not have anything to copy. + * + * @param wrapper + */ public void copyWrapper(AbstractWrapper wrapper) { - // These results have nothing to copy, so this is just a placeholder } /**