3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
16 lines
295 B
Java
Vendored
16 lines
295 B
Java
Vendored
import java.util.*;
|
|
|
|
class A {
|
|
void foo(Collection<String> collection) {
|
|
bar(collection);
|
|
}
|
|
|
|
void bar(Collection<String> collection) {
|
|
if (collection.size() < 5) {
|
|
foo(collection);
|
|
}
|
|
else {
|
|
collection.add("a")
|
|
}
|
|
}
|
|
} |