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