bodewig 2004/01/30 05:59:43 Modified: . Tag: ANT_16_BRANCH WHATSNEW src/main/org/apache/tools/ant/taskdefs Tag: ANT_16_BRANCH Java.java Log: Merge from HEAD Revision Changes Path No revision No revision 1.503.2.32 +2 -0 ant/WHATSNEW Index: WHATSNEW =================================================================== RCS file: /home/cvs/ant/WHATSNEW,v retrieving revision 1.503.2.31 retrieving revision 1.503.2.32 diff -u -r1.503.2.31 -r1.503.2.32 --- WHATSNEW 28 Jan 2004 23:15:45 -0000 1.503.2.31 +++ WHATSNEW 30 Jan 2004 13:59:43 -0000 1.503.2.32 @@ -23,6 +23,8 @@ * fixed case handling of macrodef attributes and elements. Bugzilla Reports 25687 and 26225. +* <java> ignored the append attribute, Bugzilla Report 26137. + Other changes: -------------- No revision No revision 1.77.2.2 +2 -3 ant/src/main/org/apache/tools/ant/taskdefs/Java.java Index: Java.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Java.java,v retrieving revision 1.77.2.1 retrieving revision 1.77.2.2 diff -u -r1.77.2.1 -r1.77.2.2 --- Java.java 27 Sep 2003 03:20:13 -0000 1.77.2.1 +++ Java.java 30 Jan 2004 13:59:43 -0000 1.77.2.2 @@ -1,7 +1,7 @@ /* * The Apache Software License, Version 1.1 * - * Copyright (c) 2000-2003 The Apache Software Foundation. All rights + * Copyright (c) 2000-2004 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -93,7 +93,6 @@ private boolean newEnvironment = false; private File dir = null; private boolean failOnError = false; - private boolean append = false; private Long timeout = null; private Redirector redirector = new Redirector(this); private String resultProperty; @@ -574,7 +573,7 @@ * @since Ant 1.5 */ public void setAppend(boolean append) { - this.append = append; + redirector.setAppend(append); incompatibleWithSpawn = true; }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]