Java
Missorted modifiers
Info
New
Last modified: 03 December 2024Reports declaration modifiers that are not in the canonical preferred order (as stated in the Java Language Specification).
Example:
class Foo {
native public final void foo();
}
After the quick-fix is applied:
class Foo {
public final native void foo();
}
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
MissortedModifiers
Here you can find the description of settings available for the Missorted modifiers inspection, and the reference of their default values.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?