]> source.dussan.org Git - sonarqube.git/blob
f34d4fc386897d0a49ac1a0b3c882c5c85f40d5b
[sonarqube.git] /
1 Checks that method type parameter names conform to the specified format
2
3 <p>
4 The following code snippet illustrates this rule for format "^[A-Z]$":
5 </p>
6 <pre>
7 public <type> type method() { // Non-compliant
8   return null;
9 }
10
11 public <T> T method() { // Compliant
12 }
13 </pre>