> bodewig 2003/09/17 01:50:22 > > Modified: src/testcases/org/apache/tools/ant/types/selectors > ModifiedSelectorTest.java > Log: > JDK 1.3- compatibility > > - java.io.FileWriter out = new > java.io.FileWriter(file, true); > + java.io.FileWriter out = > + new > java.io.FileWriter(file.getAbsolutePath(), true);
Oh, yes - hidden deep in the javadocs ... I should try to compile the stuff on a 1.2 machine :-) Thanks Jan