mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
1. Put 'Iterate' and 'Introduce local variable' above 'Insert semicolon' where possible 2. Add 'Insert return' fix where possible (IDEA-267682) 3. Display type in 'Iterate' fix name (IDEA-267796) GitOrigin-RevId: 08aa00adc0f7f1144c306a5dfdd279319b0af2ca
6 lines
111 B
Java
6 lines
111 B
Java
// "Iterate over Annotation[]" "true"
|
|
class Test {
|
|
void foo() {
|
|
getClass().getAnnotatio<caret>ns();
|
|
}
|
|
} |