either ignore it, or don't use unchecked or unsafe operations ....
if you want more information about what the 'problem' (it's more a remark then a problem, but still) is: do as the message suggests and recompile with the
-Xlint:unchecked
argument.
stultuske
Industrious Poster
4,366 posts since Jan 2007
Reputation Points: 1,318
Solved Threads: 610
Skill Endorsements: 23
its simple
currently you are compiling this way
javac <className.java>
You can add the option "-Xlint:unchecked" during compilation like below
javac -Xlint:unchecked <className.java>
But it is not necessary. You can ignore the message straight away
subramanya.vl
Junior Poster in Training
81 posts since Oct 2012
Reputation Points: 0
Solved Threads: 10
Skill Endorsements: 0
or you add that argument as compile argument in the ide you use.
but, as mentioned before, it is rather a remark. the application does compile and run.
stultuske
Industrious Poster
4,366 posts since Jan 2007
Reputation Points: 1,318
Solved Threads: 610
Skill Endorsements: 23