@@ -16,6 +16,22 @@ methodWithDuplicate
16
16
| AbstractCollection<E> | removeAll | Collection<?> |
17
17
| AbstractCollection<E> | retainAll | Collection<?> |
18
18
| AbstractCollection<E> | toArray | T[] |
19
+ | AbstractCollection<Entry<K,V>> | add | Entry<K,V> |
20
+ | AbstractCollection<Entry<K,V>> | addAll | Collection<? extends Entry<K,V>> |
21
+ | AbstractCollection<Entry<K,V>> | contains | Object |
22
+ | AbstractCollection<Entry<K,V>> | containsAll | Collection<?> |
23
+ | AbstractCollection<Entry<K,V>> | remove | Object |
24
+ | AbstractCollection<Entry<K,V>> | removeAll | Collection<?> |
25
+ | AbstractCollection<Entry<K,V>> | retainAll | Collection<?> |
26
+ | AbstractCollection<Entry<K,V>> | toArray | T[] |
27
+ | AbstractCollection<K> | add | K |
28
+ | AbstractCollection<K> | addAll | Collection<? extends K> |
29
+ | AbstractCollection<K> | contains | Object |
30
+ | AbstractCollection<K> | containsAll | Collection<?> |
31
+ | AbstractCollection<K> | remove | Object |
32
+ | AbstractCollection<K> | removeAll | Collection<?> |
33
+ | AbstractCollection<K> | retainAll | Collection<?> |
34
+ | AbstractCollection<K> | toArray | T[] |
19
35
| AbstractCollection<Runnable> | add | Runnable |
20
36
| AbstractCollection<Runnable> | addAll | Collection<? extends Runnable> |
21
37
| AbstractCollection<Runnable> | contains | Object |
@@ -40,6 +56,14 @@ methodWithDuplicate
40
56
| AbstractCollection<T> | removeAll | Collection<?> |
41
57
| AbstractCollection<T> | retainAll | Collection<?> |
42
58
| AbstractCollection<T> | toArray | T[] |
59
+ | AbstractCollection<V> | add | V |
60
+ | AbstractCollection<V> | addAll | Collection<? extends V> |
61
+ | AbstractCollection<V> | contains | Object |
62
+ | AbstractCollection<V> | containsAll | Collection<?> |
63
+ | AbstractCollection<V> | remove | Object |
64
+ | AbstractCollection<V> | removeAll | Collection<?> |
65
+ | AbstractCollection<V> | retainAll | Collection<?> |
66
+ | AbstractCollection<V> | toArray | T[] |
43
67
| AbstractList | add | E |
44
68
| AbstractList | add | int |
45
69
| AbstractList | addAll | Collection<? extends E> |
0 commit comments