Skip to content

Commit

Permalink
Latest docs on successful build 6593 auto-pushed to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
copybara-service[bot] committed Aug 22, 2024
1 parent 5c8136f commit f5bb658
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bugpatterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,9 @@ __[AssistedInjectAndInjectOnSameConstructor](bugpattern/AssistedInjectAndInjectO
__[AttemptedNegativeZero](bugpattern/AttemptedNegativeZero)__<br>
-0 is the same as 0. For the floating-point negative zero, use -0.0.

__[AutoValueBoxedValues](bugpattern/AutoValueBoxedValues)__<br>
AutoValue instances should not usually contain boxed types that are not Nullable. We recommend removing the unnecessary boxing.

__[AutoValueFinalMethods](bugpattern/AutoValueFinalMethods)__<br>
Make toString(), hashCode() and equals() final in AutoValue classes, so it is clear to readers that AutoValue is not overriding them

Expand Down Expand Up @@ -1440,9 +1443,6 @@ Assertions may be disabled at runtime and do not guarantee that execution will h
__[AssistedInjectAndInjectOnConstructors](bugpattern/AssistedInjectAndInjectOnConstructors)__<br>
@AssistedInject and @Inject should not be used on different constructors in the same class.

__[AutoValueBoxedValues](bugpattern/AutoValueBoxedValues)__<br>
AutoValue instances should not usually contain boxed types that are not Nullable. We recommend removing the unnecessary boxing.

__[AvoidObjectArrays](bugpattern/AvoidObjectArrays)__<br>
Object arrays are inferior to collections in almost every way. Prefer immutable collections (e.g., ImmutableSet, ImmutableList, etc.) over an object array whenever possible.

Expand Down

0 comments on commit f5bb658

Please sign in to comment.