diff options
author | avasseur <avasseur> | 2005-05-13 09:37:31 +0000 |
---|---|---|
committer | avasseur <avasseur> | 2005-05-13 09:37:31 +0000 |
commit | 0852d51f34460040aa3d3c60e47b7e0fe7b7633d (patch) | |
tree | 4b897ec6d3b3bba87b7c53643203ede5dda73fc7 /testing-util/src | |
parent | e8345b8759aebb52e5d56e216cb6634b6591fa54 (diff) | |
download | aspectj-0852d51f34460040aa3d3c60e47b7e0fe7b7633d.tar.gz aspectj-0852d51f34460040aa3d3c60e47b7e0fe7b7633d.zip |
added test entries instead of autowiredtest for Andy sake, fix 1.4 dependancies in loadtime module and util module
Diffstat (limited to 'testing-util/src')
-rw-r--r-- | testing-util/src/org/aspectj/testing/util/TestUtil.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing-util/src/org/aspectj/testing/util/TestUtil.java b/testing-util/src/org/aspectj/testing/util/TestUtil.java index 6bf3350cf..4b62f9a90 100644 --- a/testing-util/src/org/aspectj/testing/util/TestUtil.java +++ b/testing-util/src/org/aspectj/testing/util/TestUtil.java @@ -135,7 +135,7 @@ public final class TestUtil { public static URL fileToURL(File file) { try { - return file.toURI().toURL(); + return file.toURL(); } catch (MalformedURLException e) { return null; } @@ -223,7 +223,7 @@ public final class TestUtil { public static URL libURL(String rpath) { File file = libFile(rpath); try { - return file.toURI().toURL(); + return file.toURL(); } catch (MalformedURLException e) { throw new IllegalArgumentException("bad URL from: " + file); } |