Example:
public String process(String value[])[] { return value; }Most code styles prefer Java-style array declarations, with the array indicator brackets attached to the type name, like this:
public String[] process(String[] value) { return value; }
Use the checkbox below to only report C-style array declaration of method return types.