Reports array declarations made using C-style syntax, with the array indicator brackets positioned after the variable name or after the method parameter list. For 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.

Use the checkbox below to only report C-style array declaration of method return types.