Unused method parameters

This commit is contained in:
Stuart Boston
2014-10-14 14:28:28 +01:00
parent a2f88915a5
commit 8572433707
2 changed files with 7 additions and 1 deletions
@@ -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", "");
}
//</editor-fold>
@@ -73,8 +73,12 @@ public abstract class AbstractResults {
}
//</editor-fold>
/**
* 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
}
/**