Browse Source

making helper methods public for foreach to use

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273933 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 22 years ago
parent
commit
3266a2abee
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/CallTarget.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/CallTarget.java View File

@@ -177,7 +177,7 @@ public class CallTarget extends Task {
*
* @since Ant 1.5
*/
protected void handleOutput(String line) {
public void handleOutput(String line) {
if (callee != null) {
callee.handleOutput(line);
} else {
@@ -203,7 +203,7 @@ public class CallTarget extends Task {
*
* @since Ant 1.5
*/
protected void handleErrorOutput(String line) {
public void handleErrorOutput(String line) {
if (callee != null) {
callee.handleErrorOutput(line);
} else {


Loading…
Cancel
Save