Skip to content

Commit

Permalink
Remove unnecessary boxing in AutoValue classes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 667661624
  • Loading branch information
java-team-github-bot authored and Dagger Team committed Aug 26, 2024
1 parent a15cf23 commit d883a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/dagger/internal/codegen/binding/ModuleDescriptor.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public abstract class ModuleDescriptor {
public abstract ModuleKind kind();

/** Whether the module is implicitly included rather than directly referenced in annotation. */
public abstract Boolean isImplicitlyIncluded();
public abstract boolean isImplicitlyIncluded();

/** Returns all of the bindings declared in this module. */
@Memoized
Expand Down

0 comments on commit d883a9a

Please sign in to comment.