Applied code review suggestions

Co-authored-by: ByteHamster <ByteHamster@users.noreply.github.com>
This commit is contained in:
Jonas Kalderstam 2021-02-06 15:54:25 +01:00 committed by GitHub
parent 08edd151f9
commit 3a9e1fc2dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,8 +63,6 @@ public class ExceptFavoriteCleanupAlgorithm extends EpisodeCleanupAlgorithm {
}
int counter = delete.size();
Log.i(TAG, String.format(Locale.US,
"Auto-delete deleted %d episodes (%d requested)", counter,
numberOfEpisodesToDelete));
@ -88,6 +86,6 @@ public class ExceptFavoriteCleanupAlgorithm extends EpisodeCleanupAlgorithm {
@Override
public int getDefaultCleanupParameter() {
return getNumEpisodesToCleanup(0);
return 0;
}
}