C-style array declaration
Reports array declarations written in C-style syntax, where the array brackets are placed after a variable name or after a method parameter list. Most code styles prefer Java-style array declarations, where the array brackets are placed after the type name.
Example:
public String process(String value[])[] {
return value;
}
After the quick-fix is applied:
public String[] process(String[] value) {
return value;
}
- 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.
CStyleArrayDeclaration
Configure the inspection:
Use the Ignore C-style declarations in variables option to report C-style array declaration of method return types only.
Here you can find the description of settings available for the C-style array declaration 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!