DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16884>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16884 Manual for Javac task debuglevel attribute incorrect Summary: Manual for Javac task debuglevel attribute incorrect Product: Ant Version: 1.5.1 Platform: Other URL: http://ant.apache.org/manual/CoreTasks/javac.html OS/Version: Other Status: NEW Severity: Minor Priority: Other Component: Core tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The manual for the debublevel attribute on the Core Javac ant task states the following: "... If debuglevel is not specified, by default, :none will be appended to -g. If debug is not turned on, this attribute will be ignored. " This is incorrect since what actually happens is as follows: If debug is not turned on, the value -g:none is appended by default. If debug is turned on and debuglevel is not specified, -g is appended. The part about -g:none may be valid to add to the notes about the debug attribute as well.