Skip to content

Commit

Permalink
Remove some generated accessor methods in TranscoderRegistry.
Browse files Browse the repository at this point in the history
Not sure why these started blocking submits now, but...

PiperOrigin-RevId: 396008732
  • Loading branch information
sjudd authored and glide-copybara-robot committed Sep 10, 2021
1 parent 10acc31 commit e7fe3e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ public synchronized <Z, R> List<Class<R>> getTranscodeClasses(
}

private static final class Entry<Z, R> {
private final Class<Z> fromClass;
private final Class<R> toClass;
@Synthetic final Class<Z> fromClass;
@Synthetic final Class<R> toClass;
@Synthetic final ResourceTranscoder<Z, R> transcoder;

Entry(
Expand Down

0 comments on commit e7fe3e3

Please sign in to comment.