How to fix “Note: Recompile with -Xlint:unchecked for details.” on NetBeans
NetBeansでプロジェクトをビルドしていると以下のメッセージが表示されていた。
Note: /home/senooken/project/JavaFX/Dialog/src/dialog/Controller.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details.
コンパイルオプションに-Xlint:unchecked
を追加したら詳細を確認できるらしい。
[Run]→[Set Project Configuration]→[Customize]
[Build]→[Compiling]→[Additional Compiler Options:]に-Xlint:unchecked
を記入すればよい。
これで詳細な警告を確認できるようになった。