@@ -16,6 +16,14 @@ methodWithDuplicate
1616| AbstractCollection<E> | removeAll | Collection<?> |
1717| AbstractCollection<E> | retainAll | Collection<?> |
1818| 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[] |
1927| AbstractCollection<String> | add | String |
2028| AbstractCollection<String> | addAll | Collection<? extends String> |
2129| AbstractCollection<String> | contains | Object |
@@ -139,6 +147,17 @@ methodWithDuplicate
139147| Collection<K> | retainAll | Collection<?> |
140148| Collection<K> | toArray | IntFunction<T[]> |
141149| 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[] |
142161| Collection<String> | add | String |
143162| Collection<String> | addAll | Collection<? extends String> |
144163| Collection<String> | contains | Object |
@@ -191,6 +210,8 @@ methodWithDuplicate
191210| List<E> | add | int |
192211| List<E> | addAll | Collection<? extends E> |
193212| List<E> | addAll | int |
213+ | List<E> | addFirst | E |
214+ | List<E> | addLast | E |
194215| List<E> | contains | Object |
195216| List<E> | containsAll | Collection<?> |
196217| List<E> | copyOf | Collection<? extends E> |
0 commit comments