示例#1
0
 /**
  * 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);
   }
 }
示例#2
0
 /**
  * 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);
   }
 }