Files
Bas Leijdekkers a99d1835ba update language injection and pattern validation inspection descriptions
GitOrigin-RevId: bdc93923120d204b059fb91e68bf872c99a49344
2021-06-06 13:43:38 +00:00

10 lines
231 B
HTML

<html>
<body>
Reports when a <code>@Pattern</code> annotation is applied to an element with a type other than <code>String</code>.
<p><b>Example:</b></p>
<pre><code>
@Pattern("\\d\\d") <b>int</b> i;
</code></pre>
</body>
</html>