Re: compiling with the Xlint:unchecked switch
Posted By:
Robert_Lybarger
Posted On:
Tuesday, January 30, 2007 08:30 PM
I think you use a nested "compilerarg" element, something like . With that said, this probably relates to 1.5 generics stuff; you can just compile the class on your own (outside of ant) with the -X... arg to see the message, and you can likely suppress the compiler from giving you this message at all using the appropriate annotation, probably in this case by putting @SuppressWarnings("unchecked") on either the class as a whole or on just the troublesome method(s) it/themselves.