diff options
Diffstat (limited to 'ajdoc/testsrc/org')
-rw-r--r-- | ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocTestCase.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocTestCase.java b/ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocTestCase.java index 521604645..27979b925 100644 --- a/ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocTestCase.java +++ b/ajdoc/testsrc/org/aspectj/tools/ajdoc/AjdocTestCase.java @@ -13,11 +13,11 @@ package org.aspectj.tools.ajdoc; import java.io.File; import java.io.IOException; -import org.aspectj.util.FileUtil; - import junit.framework.AssertionFailedError; import junit.framework.TestCase; +import org.aspectj.tools.ajc.Ajc; + /** * This class is the super class of all Ajdoc tests. It creates * a sandbox directory and provides utility methods for @@ -35,7 +35,7 @@ public class AjdocTestCase extends TestCase{ docOutdir = null; projectDir = null; // Create a sandbox in which to work - sandboxDir = FileUtil.createEmptySandbox(); + sandboxDir = Ajc.createEmptySandbox(); // create the ajdocworkdingdir in the sandbox Main.setOutputWorkingDir(getWorkingDir().getAbsolutePath()); } |