From 3ff20b066ccfc5397e2409ee57e404fa178fb9d8 Mon Sep 17 00:00:00 2001 From: Jan Materne Date: Wed, 7 Nov 2007 18:24:08 +0000 Subject: [PATCH] use static methods in a static way git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@592844 13f79535-47bb-0310-9956-ffa450edef68 --- src/tests/junit/org/apache/tools/ant/taskdefs/CopyTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/junit/org/apache/tools/ant/taskdefs/CopyTest.java b/src/tests/junit/org/apache/tools/ant/taskdefs/CopyTest.java index 28526387b..f205b2692 100644 --- a/src/tests/junit/org/apache/tools/ant/taskdefs/CopyTest.java +++ b/src/tests/junit/org/apache/tools/ant/taskdefs/CopyTest.java @@ -181,7 +181,7 @@ public class CopyTest extends BuildFileTest { File file1 = new File(getProjectDir(), getProject().getProperty("to.dir")+"/fileNR.txt"); assertTrue(file1.exists()); try { - String file1Content = FILE_UTILS.readFully(new FileReader(file1)); + String file1Content = FileUtils.readFully(new FileReader(file1)); assertEquals("This is file 42", file1Content); } catch (IOException e) { // no-op: not a real business error