protected void handleErrorOutput(String line) { if (callee != null) { callee.handleErrorOutput(line); } else { super.handleErrorOutput(line); } }
/** * 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 handleErrorOutput(String output) { if (ant != null) { ant.handleErrorOutput(output); } else { super.handleErrorOutput(output); } }
/** * Pass output sent to System.err to the new project. * * @since Ant 1.5 */ public void handleErrorOutput(String output) { if (callee != null) { callee.handleErrorOutput(output); } else { super.handleErrorOutput(output); } }