Reports array declarations made using C-style syntax, with the array indicator brackets positioned after the variable name or after the method parameter list.

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.