@@ -110,6 +110,7 @@ methodWithDuplicate
110
110
| Collection<E> | addAll | Collection<? extends E> |
111
111
| Collection<E> | contains | Object |
112
112
| Collection<E> | containsAll | Collection<?> |
113
+ | Collection<E> | equals | Object |
113
114
| Collection<E> | remove | Object |
114
115
| Collection<E> | removeAll | Collection<?> |
115
116
| Collection<E> | removeIf | Predicate<? super E> |
@@ -120,6 +121,7 @@ methodWithDuplicate
120
121
| Collection<Entry<K,V>> | addAll | Collection<? extends Entry<K,V>> |
121
122
| Collection<Entry<K,V>> | contains | Object |
122
123
| Collection<Entry<K,V>> | containsAll | Collection<?> |
124
+ | Collection<Entry<K,V>> | equals | Object |
123
125
| Collection<Entry<K,V>> | remove | Object |
124
126
| Collection<Entry<K,V>> | removeAll | Collection<?> |
125
127
| Collection<Entry<K,V>> | removeIf | Predicate<? super Entry<K,V>> |
@@ -130,6 +132,7 @@ methodWithDuplicate
130
132
| Collection<K> | addAll | Collection<? extends K> |
131
133
| Collection<K> | contains | Object |
132
134
| Collection<K> | containsAll | Collection<?> |
135
+ | Collection<K> | equals | Object |
133
136
| Collection<K> | remove | Object |
134
137
| Collection<K> | removeAll | Collection<?> |
135
138
| Collection<K> | removeIf | Predicate<? super K> |
@@ -151,6 +154,7 @@ methodWithDuplicate
151
154
| Collection<V> | addAll | Collection<? extends V> |
152
155
| Collection<V> | contains | Object |
153
156
| Collection<V> | containsAll | Collection<?> |
157
+ | Collection<V> | equals | Object |
154
158
| Collection<V> | remove | Object |
155
159
| Collection<V> | removeAll | Collection<?> |
156
160
| Collection<V> | removeIf | Predicate<? super V> |
@@ -188,6 +192,7 @@ methodWithDuplicate
188
192
| List<E> | contains | Object |
189
193
| List<E> | containsAll | Collection<?> |
190
194
| List<E> | copyOf | Collection<? extends E> |
195
+ | List<E> | equals | Object |
191
196
| List<E> | get | int |
192
197
| List<E> | indexOf | Object |
193
198
| List<E> | lastIndexOf | Object |
@@ -270,6 +275,7 @@ methodWithDuplicate
270
275
| Map<Identity,Entry<?>> | copyOf | Map<? extends K,? extends V> |
271
276
| Map<Identity,Entry<?>> | entry | K |
272
277
| Map<Identity,Entry<?>> | entry | V |
278
+ | Map<Identity,Entry<?>> | equals | Object |
273
279
| Map<Identity,Entry<?>> | forEach | BiConsumer<? super Identity,? super Entry<?>> |
274
280
| Map<Identity,Entry<?>> | get | Object |
275
281
| Map<Identity,Entry<?>> | getOrDefault | Entry<?> |
@@ -300,6 +306,7 @@ methodWithDuplicate
300
306
| Map<K,V> | copyOf | Map<? extends K,? extends V> |
301
307
| Map<K,V> | entry | K |
302
308
| Map<K,V> | entry | V |
309
+ | Map<K,V> | equals | Object |
303
310
| Map<K,V> | forEach | BiConsumer<? super K,? super V> |
304
311
| Map<K,V> | get | Object |
305
312
| Map<K,V> | getOrDefault | Object |
@@ -330,6 +337,7 @@ methodWithDuplicate
330
337
| Map<Object,Object> | copyOf | Map<? extends K,? extends V> |
331
338
| Map<Object,Object> | entry | K |
332
339
| Map<Object,Object> | entry | V |
340
+ | Map<Object,Object> | equals | Object |
333
341
| Map<Object,Object> | forEach | BiConsumer<? super Object,? super Object> |
334
342
| Map<Object,Object> | get | Object |
335
343
| Map<Object,Object> | getOrDefault | Object |
0 commit comments