(no commit message)
[utils] / support / general / src / test / java / org / wamblee / io / FileSystemUtils.java
index 7145c7f8dcc5b604e34274470d4bfdaeb4a72b6e..bf8019808691dcaae46463cb9628a60d89fa40a2 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.io;
 
 import java.io.File;
@@ -39,7 +39,8 @@ import junit.framework.TestCase;
  * @author Erik Brakkee
  */
 public final class FileSystemUtils {
-    private static final Logger LOG = Logger.getLogger(FileSystemUtils.class.getName());
+    private static final Logger LOG = Logger.getLogger(FileSystemUtils.class
+        .getName());
 
     /**
      * Test output directory relative to the sub project.
@@ -136,7 +137,8 @@ public final class FileSystemUtils {
             path = URLDecoder.decode(location.getPath(), "UTF-8");
         } catch (UnsupportedEncodingException e) {
             // ignore it.. just don't decode
-            LOG.log(Level.WARNING, "Decoding path failed: '" + location.getPath() + "'", e);
+            LOG.log(Level.WARNING, "Decoding path failed: '" +
+                location.getPath() + "'", e);
         }
 
         return new File(new File(path).getParentFile(), aRelativePath);
@@ -299,7 +301,7 @@ public final class FileSystemUtils {
         Assert.assertTrue(aSrc.isDirectory());
         Assert.assertTrue(!aTarget.exists());
 
-        if (!aTarget.mkdirs()) { 
+        if (!aTarget.mkdirs()) {
             Assert.fail("Could not create target directory '" + aTarget + "'");
         }