--- ImportTask.java~ 2004-02-12 14:33:24.000000000 +0100 +++ ImportTask.java 2004-03-10 15:20:11.000000000 +0100 @@ -134,7 +134,7 @@ } } - importedFile = new File(getPath(importedFile)); + importedFile = new File(importedFile.getAbsolutePath()); if (importStack.contains(importedFile)) { getProject().log( @@ -150,12 +150,4 @@ ex, getLocation()); } } - - private static String getPath(File file) { - try { - return file.getCanonicalPath(); - } catch (IOException e) { - return file.getAbsolutePath(); - } - } }