X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fio%2FFileSystemUtils.java;h=bf8019808691dcaae46463cb9628a60d89fa40a2;hb=26805fc0810098c4bd8009a35c8719478e74153e;hp=7145c7f8dcc5b604e34274470d4bfdaeb4a72b6e;hpb=cf5d0ae2e696c7feed411c02a022d9ef33ef0ad0;p=utils diff --git a/support/general/src/test/java/org/wamblee/io/FileSystemUtils.java b/support/general/src/test/java/org/wamblee/io/FileSystemUtils.java index 7145c7f8..bf801980 100644 --- a/support/general/src/test/java/org/wamblee/io/FileSystemUtils.java +++ b/support/general/src/test/java/org/wamblee/io/FileSystemUtils.java @@ -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 + "'"); }