mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
if one of interface method modifiers in illegal combination is 'final' the quick-fix should suggest removing it IDEA-290172 GitOrigin-RevId: 7264f47c76068c36b4aa4b33f2f796dc1c2c0312
5 lines
69 B
Java
5 lines
69 B
Java
// "Make 'x' not final" "true"
|
|
interface X {
|
|
default void x() {}
|
|
}
|