@@ -16,6 +16,14 @@ methodWithDuplicate
16
16
| AbstractCollection<E> | removeAll | Collection<?> |
17
17
| AbstractCollection<E> | retainAll | Collection<?> |
18
18
| AbstractCollection<E> | toArray | T[] |
19
+ | AbstractCollection<Runnable> | add | Runnable |
20
+ | AbstractCollection<Runnable> | addAll | Collection<? extends Runnable> |
21
+ | AbstractCollection<Runnable> | contains | Object |
22
+ | AbstractCollection<Runnable> | containsAll | Collection<?> |
23
+ | AbstractCollection<Runnable> | remove | Object |
24
+ | AbstractCollection<Runnable> | removeAll | Collection<?> |
25
+ | AbstractCollection<Runnable> | retainAll | Collection<?> |
26
+ | AbstractCollection<Runnable> | toArray | T[] |
19
27
| AbstractCollection<String> | add | String |
20
28
| AbstractCollection<String> | addAll | Collection<? extends String> |
21
29
| AbstractCollection<String> | contains | Object |
@@ -139,6 +147,17 @@ methodWithDuplicate
139
147
| Collection<K> | retainAll | Collection<?> |
140
148
| Collection<K> | toArray | IntFunction<T[]> |
141
149
| Collection<K> | toArray | T[] |
150
+ | Collection<Runnable> | add | Runnable |
151
+ | Collection<Runnable> | addAll | Collection<? extends Runnable> |
152
+ | Collection<Runnable> | contains | Object |
153
+ | Collection<Runnable> | containsAll | Collection<?> |
154
+ | Collection<Runnable> | equals | Object |
155
+ | Collection<Runnable> | remove | Object |
156
+ | Collection<Runnable> | removeAll | Collection<?> |
157
+ | Collection<Runnable> | removeIf | Predicate<? super Runnable> |
158
+ | Collection<Runnable> | retainAll | Collection<?> |
159
+ | Collection<Runnable> | toArray | IntFunction<T[]> |
160
+ | Collection<Runnable> | toArray | T[] |
142
161
| Collection<String> | add | String |
143
162
| Collection<String> | addAll | Collection<? extends String> |
144
163
| Collection<String> | contains | Object |
@@ -191,6 +210,8 @@ methodWithDuplicate
191
210
| List<E> | add | int |
192
211
| List<E> | addAll | Collection<? extends E> |
193
212
| List<E> | addAll | int |
213
+ | List<E> | addFirst | E |
214
+ | List<E> | addLast | E |
194
215
| List<E> | contains | Object |
195
216
| List<E> | containsAll | Collection<?> |
196
217
| List<E> | copyOf | Collection<? extends E> |
0 commit comments