aboutsummaryrefslogtreecommitdiffstats
path: root/testing-util/src
diff options
context:
space:
mode:
authoravasseur <avasseur>2005-05-13 09:37:31 +0000
committeravasseur <avasseur>2005-05-13 09:37:31 +0000
commit0852d51f34460040aa3d3c60e47b7e0fe7b7633d (patch)
tree4b897ec6d3b3bba87b7c53643203ede5dda73fc7 /testing-util/src
parente8345b8759aebb52e5d56e216cb6634b6591fa54 (diff)
downloadaspectj-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.java4
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);
}