diff options
author | mwebster <mwebster> | 2006-06-15 12:58:38 +0000 |
---|---|---|
committer | mwebster <mwebster> | 2006-06-15 12:58:38 +0000 |
commit | 81abede5115df2b032b846c5ff8bf23050f68e34 (patch) | |
tree | fc8b9972315fc1dce4eecf8d630183eb95433e77 /ajdoc | |
parent | f4cd0bfb01911ae5f8aaf4a114fac0b921806f50 (diff) | |
download | aspectj-81abede5115df2b032b846c5ff8bf23050f68e34.tar.gz aspectj-81abede5115df2b032b846c5ff8bf23050f68e34.zip |
Fix build: move createEmptySandbox() from FileUtil back to Ajc to avoid JUnit dependency problem in util project
Diffstat (limited to 'ajdoc')
-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()); } |