@@ -32,6 +32,14 @@ methodWithDuplicate
32
32
| AbstractCollection<String> | removeAll | Collection<?> |
33
33
| AbstractCollection<String> | retainAll | Collection<?> |
34
34
| AbstractCollection<String> | toArray | T[] |
35
+ | AbstractCollection<T> | add | T |
36
+ | AbstractCollection<T> | addAll | Collection<? extends T> |
37
+ | AbstractCollection<T> | contains | Object |
38
+ | AbstractCollection<T> | containsAll | Collection<?> |
39
+ | AbstractCollection<T> | remove | Object |
40
+ | AbstractCollection<T> | removeAll | Collection<?> |
41
+ | AbstractCollection<T> | retainAll | Collection<?> |
42
+ | AbstractCollection<T> | toArray | T[] |
35
43
| AbstractList | add | E |
36
44
| AbstractList | add | int |
37
45
| AbstractList | addAll | Collection<? extends E> |
@@ -169,6 +177,17 @@ methodWithDuplicate
169
177
| Collection<String> | retainAll | Collection<?> |
170
178
| Collection<String> | toArray | IntFunction<T[]> |
171
179
| Collection<String> | toArray | T[] |
180
+ | Collection<T> | add | T |
181
+ | Collection<T> | addAll | Collection<? extends T> |
182
+ | Collection<T> | contains | Object |
183
+ | Collection<T> | containsAll | Collection<?> |
184
+ | Collection<T> | equals | Object |
185
+ | Collection<T> | remove | Object |
186
+ | Collection<T> | removeAll | Collection<?> |
187
+ | Collection<T> | removeIf | Predicate<? super T> |
188
+ | Collection<T> | retainAll | Collection<?> |
189
+ | Collection<T> | toArray | IntFunction<T[]> |
190
+ | Collection<T> | toArray | T[] |
172
191
| Collection<V> | add | V |
173
192
| Collection<V> | addAll | Collection<? extends V> |
174
193
| Collection<V> | contains | Object |
0 commit comments