summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/src/inspectionDescriptions/CStyleArrayDeclaration.html
blob: 7320abc37f1964a50d1d4fcb5a3cc61df189bd0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<body>
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:
<code><pre>
  <b>public</b> String process(String value[])[] {
    return value;
  }
</pre></code>
Most code styles prefer Java-style array declarations, with the array indicator brackets attached to the type name.
<!-- tooltip end -->
<p>
Use the checkbox below to only report C-style array declaration of method return types.
<p>

</body>
</html>