mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
15 lines
226 B
Java
15 lines
226 B
Java
public class DuplicateWithLocalMethodReference {
|
|
|
|
void example(){}
|
|
|
|
void test(){
|
|
extracted();
|
|
|
|
extracted();
|
|
}
|
|
|
|
private void extracted() {
|
|
System.out.println();
|
|
example();
|
|
}
|
|
} |