mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
11 lines
281 B
Java
11 lines
281 B
Java
// "Replace Collection.stream().forEach() with Collection.forEach()" "true"
|
|
|
|
import java.util.Arrays;
|
|
import java.util.Collection;
|
|
|
|
class Test {
|
|
void print() {
|
|
Collection<Character> def = Arrays.asList('d', 'e', 'f');
|
|
def.stream().forE<caret>ach(System.out::print);
|
|
}
|
|
} |