mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
for "Java module name contradicts convention" inspection GitOrigin-RevId: aee175101de907aea9c6ce65a12ad1ed02513dc6
17 lines
508 B
HTML
17 lines
508 B
HTML
<html>
|
|
<body>
|
|
Reports module names in <code>module-info.java</code> that violate the Java Platform Module System
|
|
<a href="http://mail.openjdk.org/pipermail/jpms-spec-experts/2017-March/000659.html">recommendation</a>
|
|
to avoid encoding version information in module names by ending the name with one or more digits.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
module foo.bar2 {}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
module foo.bar {}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html>
|