NikhithaTarala / achartengine

Automatically exported from code.google.com/p/achartengine
0 stars 0 forks source link

ant javac task has invalid debuglevel value #153

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
In build.xml, the javac tasks all say:
<javac ... debuglevel="lines,var,source"

They should say:
<javac ... debuglevel="lines,vars,source"

"var" is not a valid value according to the man page for javac. Java 7's javac 
will fail with this invalid parameter (it appears to be stricter than Java 6's 
javac).

I'm attaching a patch which fixes this issue.

Original issue reported on code.google.com by candrews...@gmail.com on 10 Nov 2011 at 9:26

GoogleCodeExporter commented 8 years ago
Correct diff - sorry!

Original comment by candrews...@gmail.com on 10 Nov 2011 at 9:29

Attachments:

GoogleCodeExporter commented 8 years ago
Fixed in SVN rev. r318.

Original comment by dandrome...@gmail.com on 10 Dec 2011 at 2:16