Skip to content

Commit

Permalink
Merge pull request #6177 from robolectric/piper_353541470
Browse files Browse the repository at this point in the history
Remove debug print statements from AndroidInterceptors
  • Loading branch information
hoisie committed Jan 31, 2021
2 parents 2865d95 + 3284ded commit 7e86ae1
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -340,12 +340,10 @@ public CleanerInterceptor() {
}

static Object create(Object obj, Runnable action) {
System.out.printf("Cleaner.create(%s,%s)%n", obj, action);
return CleanerCompat.register(obj, action);
}

static void clean(Object cleanable) {
System.out.printf("Cleaner.clean(%s)%n", cleanable);
CleanerCompat.clean(cleanable);
}

Expand Down

0 comments on commit 7e86ae1

Please sign in to comment.