]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Uhm, one should actually do something with the return value.
authorJeremias Maerki <jeremias@apache.org>
Wed, 4 Feb 2009 10:24:15 +0000 (10:24 +0000)
committerJeremias Maerki <jeremias@apache.org>
Wed, 4 Feb 2009 10:24:15 +0000 (10:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@740673 13f79535-47bb-0310-9956-ffa450edef68

test/java/org/apache/fop/AbstractFOPTestCase.java

index ce39d04048054d1d3b2de2012594fbe7f272cfbc..6961ac6f370c4c256656ff256ea4ef864b5d9c58 100644 (file)
@@ -42,7 +42,8 @@ public abstract class AbstractFOPTestCase extends TestCase {
     protected File getBaseDir() {
         String basedir = System.getProperty("basedir");
         if (basedir != null) {
-            basedir.replaceAll("%20", " "); //Under Java 1.4 the path may contain spaces as %20
+            //Under Java 1.4 the path may contain spaces as %20
+            basedir = basedir.replaceAll("%20", " ");
             return new File(basedir);
         } else {
             return new File(".");