On Fri, 9 Dec 2011 07:46:08 -0800 (PST), www <> wrote,
quoted or indirectly quoted someone who said :
>
>I am running Ant on command line, there are many, many WARNING
>messages, cluttering my screen:
those are not ANT messages. They are Javac messages. See
http://mindprod.com/jgloss/javacexe.html
to learn the option to turn off such warnings.
<!-- C O M P I L E -->
<target name="compile">
<echo message=" ::: bio ::: compiling Java tree with
target=1.5" />
<javac source="1.5" target="1.5" srcdir="com/mindprod/bio"
sourcepath="${basedir}" classpath="${basedir}" debug="on"
includeAntRuntime="false">
<compilerarg value="-Xlint:unchecked" />
<compilerarg value="-Xlint:fallthrough" />
<compilerarg value="-Xlint:deprecation" />
</javac>
</target>
Then just add the option no your compilerargs.
--
Roedy Green Canadian Mind Products
http://mindprod.com
For me, the appeal of computer programming is that
even though I am quite a klutz,
I can still produce something, in a sense
perfect, because the computer gives me as many
chances as I please to get it right.