Example:
public String process(String value[])[] {
return value;
}
After the quick-fix is applied:
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.