I get an error Recompile with -Xlint:unchecked for details. in Netbeans. Where can I find the option to uncheck?
I get an error Recompile with -Xlint:unchecked for details. in Netbeans. Where can I
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t "uncheck" that option, you need to add the
-Xlint:uncheckedparameter to the parameters passed to the Java compiler.For Ant based projects, this is done through
Project Properties -> Build -> Compilingin the "Additional compiler options" input field at the bottom of the dialog (where it says "e.g.: -Xlint:unchecked")For Maven projects see this answer