mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
13 lines
259 B
Java
13 lines
259 B
Java
// "Replace lambda with method reference" "false"
|
|
import java.util.concurrent.atomic.AtomicReference;
|
|
import java.util.stream.Stream;
|
|
|
|
class Test {
|
|
|
|
public <T> void some(Stream<AtomicReference<T>> stream) {
|
|
stream.map(t -> t.getCl<caret>ass());
|
|
}
|
|
|
|
|
|
}
|