Changed Java compilation to have debug flag set. This will include

line numbers in the stack traces saved to K9-errors.  Please watch for
speed or size problems caused by this change.  DAmail ran with debug
compilation, and I didn't see any problems, but there might be
something I missed.
This commit is contained in:
Daniel Applebaum 2009-01-07 06:15:46 +00:00
parent 3a3dc2da43
commit 3804ec3add
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@
<!-- Compile this project's .java files into .class files. -->
<target name="compile" depends="dirs, resource-src, aidl">
<javac encoding="ascii" target="1.5" debug="false" extdirs=""
<javac encoding="ascii" target="1.5" debug="true" extdirs=""
srcdir="."
destdir="${outdir-classes}"
bootclasspath="${android-jar}">