diff options
author | Xerxes Rånby <[email protected]> | 2012-12-06 09:46:55 +0100 |
---|---|---|
committer | Xerxes Rånby <[email protected]> | 2012-12-06 09:46:55 +0100 |
commit | 6909aba0c45cb2c79a09587c25e417d8c233203a (patch) | |
tree | 3bb053f3935d55ae0be1eeca45ebc63083e91a47 | |
parent | dd0b389ec4c9c13dff155394c485828ba0bb851c (diff) |
build.xml: optimize="on" debug="off" -Xlint
Signed-off-by: Xerxes Rånby <[email protected]>
-rw-r--r-- | build.xml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -48,10 +48,11 @@ <!-- compile --> <target name="compile" depends="init"> - <javac destdir="${build}" optimize="off" debug="on" source="1.6"> + <javac destdir="${build}" optimize="on" debug="off" source="1.6"> <src path="${src}"/> <include name="jake2/**"/> <classpath refid="build.class.path"/> + <compilerarg value="-Xlint"/> </javac> </target> |