/** * Pass output sent to System.err to the new project. * * @param output The error output to log. Should not be <code>null</code>. * @since Ant 1.6.2 */ public void handleErrorFlush(String output) { if (ant != null) { ant.handleErrorFlush(output); } else { super.handleErrorFlush(output); } }
/** * Pass output sent to System.err to the new project and flush stream. * * @since Ant 1.5.2 */ public void handleErrorFlush(String output) { if (callee != null) { callee.handleErrorFlush(output); } else { super.handleErrorFlush(output); } }