mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: 66179a41da5e02b759f07f9d6638b87711181348
14 lines
394 B
HTML
14 lines
394 B
HTML
<html>
|
|
<body>
|
|
Reports miscellaneous problems with the module-info.java file. For example, it reports a service which is provided but not exported or used.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
module myModule {
|
|
// Service is provided but its containing package is not exported
|
|
provides com.example.MyService with com.example.MyServiceImpl;
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html>
|