Skip to content

Commit

Permalink
Remove debug print statements from Cleaner AndroidInterceptor
Browse files Browse the repository at this point in the history
Interestingly they have been there for 2+ years.

PiperOrigin-RevId: 353541470
  • Loading branch information
hoisie committed Jan 31, 2021
1 parent d0ee5bd commit 1414736
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 1414736

Please sign in to comment.