Commit 2912891
Explicitly list
That way, when the rendered Javadoc lists `Table` under "All implemented interfaces," it lists it with `@Nullable` on the type argument.
Currently, Javadoc does not include `@Nullable` because we explicitly declare only `extends ArrayTable<R, C, @nullable V>`, where `ArrayTable` in turn `implements Table<R, C, V>`. That is not enough for Javadoc because Java doesn't know how substitution works for arbitrary custom type systems. (I think this relates to [JDK-8042981](https://bugs.openjdk.org/browse/JDK-8042981).)
RELNOTES=n/a
PiperOrigin-RevId: 794690990Table<..., @nullable V> as a supertype of ArrayTable.1 parent 9fb2a4a commit 2912891
File tree
2 files changed
+6
-2
lines changed- android/guava/src/com/google/common/collect
- guava/src/com/google/common/collect
2 files changed
+6
-2
lines changedLines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
| 92 | + | |
| 93 | + | |
92 | 94 | | |
93 | 95 | | |
94 | | - | |
| 96 | + | |
95 | 97 | | |
96 | 98 | | |
97 | 99 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
| 93 | + | |
| 94 | + | |
93 | 95 | | |
94 | 96 | | |
95 | | - | |
| 97 | + | |
96 | 98 | | |
97 | 99 | | |
98 | 100 | | |
| |||
0 commit comments