Skip to content

Commit 9a8ec36

Browse files
committed
Accept test changes
1 parent aa1d5c5 commit 9a8ec36

File tree

1 file changed

+19
-0
lines changed
  • java/ql/test-kotlin1/library-tests/java-kotlin-collection-type-generic-methods

1 file changed

+19
-0
lines changed

java/ql/test-kotlin1/library-tests/java-kotlin-collection-type-generic-methods/test.expected

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ methodWithDuplicate
3232
| AbstractCollection<String> | removeAll | Collection<?> |
3333
| AbstractCollection<String> | retainAll | Collection<?> |
3434
| 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[] |
3543
| AbstractList | add | E |
3644
| AbstractList | add | int |
3745
| AbstractList | addAll | Collection<? extends E> |
@@ -169,6 +177,17 @@ methodWithDuplicate
169177
| Collection<String> | retainAll | Collection<?> |
170178
| Collection<String> | toArray | IntFunction<T[]> |
171179
| 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[] |
172191
| Collection<V> | add | V |
173192
| Collection<V> | addAll | Collection<? extends V> |
174193
| Collection<V> | contains | Object |

0 commit comments

Comments
 (0)