bodewig     2003/01/31 04:35:13

  Modified:    src/main/org/apache/tools/ant/taskdefs Tag: ANT_15_BRANCH
                        CallTarget.java
  Log:
  merge fix for bug 16618 from HEAD
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.21.2.3  +3 -3      
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/CallTarget.java
  
  Index: CallTarget.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/CallTarget.java,v
  retrieving revision 1.21.2.2
  retrieving revision 1.21.2.3
  diff -u -r1.21.2.2 -r1.21.2.3
  --- CallTarget.java   5 Jul 2002 11:36:08 -0000       1.21.2.2
  +++ CallTarget.java   31 Jan 2003 12:35:13 -0000      1.21.2.3
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2000-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -177,7 +177,7 @@
        *
        * @since Ant 1.5
        */
  -    protected void handleOutput(String line) {
  +    public void handleOutput(String line) {
           if (callee != null) {
               callee.handleOutput(line);
           } else {
  @@ -190,7 +190,7 @@
        *
        * @since Ant 1.5
        */
  -    protected void handleErrorOutput(String line) {
  +    public void handleErrorOutput(String line) {
           if (callee != null) {
               callee.handleErrorOutput(line);
           } else {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to