New J2K: Split old j2k and new j2k tests
This commit is contained in:
committed by
Ilya Kirillov
parent
02a206bf7c
commit
b411e8e18e
@@ -0,0 +1,11 @@
|
||||
import java.util.*;
|
||||
|
||||
class A<T>{
|
||||
void foo(Collection<String> nonMutableCollection,
|
||||
Collection<String> mutableCollection,
|
||||
Set<T> mutableSet,
|
||||
Map<String, T> mutableMap) {
|
||||
mutableCollection.addAll(nonMutableCollection);
|
||||
mutableSet.add(mutableMap.remove("a"));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user