mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 21:15:58 +07:00
11 lines
163 B
Java
11 lines
163 B
Java
import java.util.List;
|
|
|
|
class A {
|
|
void method(List<String> y, boolean a){}
|
|
|
|
/**
|
|
* {@link #method(java.util.List, boolean)}
|
|
*/
|
|
void bar() {}
|
|
}
|