mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 17:15:38 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
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> |