Skip to content

Commit

Permalink
Remove stray parens.
Browse files Browse the repository at this point in the history
- https://errorprone.info/bugpattern/NullableWildcard
- https://errorprone.info/bugpattern/NullableTypeParameter
- https://errorprone.info/bugpattern/ExtendsObject (The actual parenthetical in the title is fine; the problem is under "The problem.')

PiperOrigin-RevId: 583397840
  • Loading branch information
cpovirk authored and Error Prone Team committed Nov 17, 2023
1 parent aa6e3e7 commit 7684e85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/bugpattern/ExtendsObject.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
`T extends Object` is redundant; both `<T>` and `<T extends Object>` compile to
identical class files.— unless you are using the Checker Framework).
identical class files.— unless you are using the Checker Framework.
2 changes: 1 addition & 1 deletion docs/bugpattern/NullableTypeParameter.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Nullness annotations directly on type parameters are interpreted differently by
different tools.
— unless you are using the Checker Framework).
— unless you are using the Checker Framework.

### Tool interpretations and suggested alternatives

Expand Down
2 changes: 1 addition & 1 deletion docs/bugpattern/NullableWildcard.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Nullness annotations directly on wildcard types are interpreted differently by
different tools.
— unless you are using the Checker Framework).
— unless you are using the Checker Framework.

### Tool interpretations and suggested alternatives

Expand Down

0 comments on commit 7684e85

Please sign in to comment.