mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
11 lines
515 B
HTML
11 lines
515 B
HTML
<body>
|
|
Reports an empty <code>module-info.java</code> file, indicating unresolved module dependencies. Automatically adds necessary <code>requires</code> statements by inspecting imports.
|
|
To suppress this warning, you may write any comment inside the module statement body, like this:
|
|
<pre><code>
|
|
module module.name {
|
|
// no dependencies
|
|
}
|
|
</code></pre>
|
|
<b>Quick Fix:</b> <i>Fill in module dependencies</i> fills in missing <code>requires</code> based on source code imports.
|
|
<small>New in 2024.1</small>
|
|
</body> |