From a40f84b2b97d7b3a91d5cad44ab6ad06332ff2a0 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 6 Feb 2009 16:46:28 +0000 Subject: [PATCH] jdk1.4 git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@741630 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/Redirector.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Redirector.java b/src/main/org/apache/tools/ant/taskdefs/Redirector.java index 8d68556ed..cbf801ee1 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Redirector.java +++ b/src/main/org/apache/tools/ant/taskdefs/Redirector.java @@ -232,7 +232,7 @@ public class Redirector { if (input == null) { this.input = null; } else { - this.input = input.clone(); + this.input = (File[]) input.clone(); } } } @@ -297,7 +297,7 @@ public class Redirector { if (out == null) { this.out = null; } else { - this.out = out.clone(); + this.out = (File[]) out.clone(); } } } @@ -397,7 +397,7 @@ public class Redirector { if (error == null) { this.error = null; } else { - this.error = error.clone(); + this.error = (File[]) error.clone(); } } }