'package.html' may be converted to 'package-info.java'
Reports any package.html
files which are used for documenting packages.
Since JDK 1.5, it is recommended that you use package-info.java
files instead, as such files can also contain package annotations. This way, package-info.java becomes a sole repository for package level annotations and documentation.
Example: package.html
<html>
<body>
Documentation example.
</body>
</html>
After the quick-fix is applied: package-info.java
/**
* Documentation example.
*/
package com.sample;
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
PackageDotHtmlMayBePackageInfo- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 242.22892 |
Last modified: 11 September 2024