Example:
public String process(String value[])[] {
return value;
}
Most code styles prefer Java-style array declarations in which the array indicator brackets are attached to the type name, for example:
public String[] process(String[] value) {
return value;
}
Configure the inspection:
Use the Ignore C-style declarations in variables option to report C-style array declaration of method return types only.