mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 18:03:06 +07:00
Now three options is available: use FQN always, never, or when not imported. Last is used by default. Converted and moved boolean legacy setting from CommonCodeStyle settings into JavaCodeStyleSettings.
11 lines
153 B
Java
11 lines
153 B
Java
import java.util.List;
|
|
|
|
class A {
|
|
void method(List<String> y, boolean a){}
|
|
|
|
/**
|
|
* {@link #method(List, boolean)}
|
|
*/
|
|
void bar() {}
|
|
}
|