Signed-off-by: Florian Koeberle <florianskarten@xxxxxx> --- .../org/spearce/jgit/lib/RepositoryTestCase.java | 22 ++++++++++--------- 1 files changed, 12 insertions(+), 10 deletions(-) diff --git a/org.spearce.jgit.test/tst/org/spearce/jgit/lib/RepositoryTestCase.java b/org.spearce.jgit.test/tst/org/spearce/jgit/lib/RepositoryTestCase.java index 14e7179..aae9ed6 100644 --- a/org.spearce.jgit.test/tst/org/spearce/jgit/lib/RepositoryTestCase.java +++ b/org.spearce.jgit.test/tst/org/spearce/jgit/lib/RepositoryTestCase.java @@ -113,8 +113,8 @@ public abstract class RepositoryTestCase extends TestCase { throws IOException { Reader r = new InputStreamReader(new FileInputStream(f), "ISO-8859-1"); char[] data = new char[(int) f.length()]; - if (f.length() != r.read(data)) - throw new IOException("Internal error reading file data from "+f); + if (f.length() != r.read(data)) + throw new IOException("Internal error reading file data from " + f); assertEquals(checkData, new String(data)); } @@ -123,7 +123,7 @@ public abstract class RepositoryTestCase extends TestCase { public void setUp() throws Exception { super.setUp(); recursiveDelete(trashParent); - trash = new File(trashParent,"trash"+System.currentTimeMillis()); + trash = new File(trashParent, "trash" + System.currentTimeMillis()); trash_git = new File(trash, ".git"); Runtime.getRuntime().addShutdownHook(new Thread() { @@ -140,8 +140,7 @@ public abstract class RepositoryTestCase extends TestCase { "pack-34be9032ac282b11fa9babdc2b2a93ca996c9c2f", "pack-df2982f284bbabb6bdb59ee3fcc6eb0983e20371", "pack-9fb5b411fe6dfa89cc2e6b89d2bd8e5de02b5745", - "pack-e6d07037cbcf13376308a0a995d1fa48f8f76aaa" - }; + "pack-e6d07037cbcf13376308a0a995d1fa48f8f76aaa" }; final File tst = new File("tst"); final File packDir = new File(db.getObjectsDirectory(), "pack"); for (int k = 0; k < packs.length; k++) { @@ -151,7 +150,8 @@ public abstract class RepositoryTestCase extends TestCase { packs[k] + ".idx")); } - copyFile(new File(tst, "packed-refs"), new File(trash_git,"packed-refs")); + copyFile(new File(tst, "packed-refs"), new File(trash_git, + "packed-refs")); db.scanForPacks(); } @@ -163,15 +163,17 @@ public abstract class RepositoryTestCase extends TestCase { /** * Helper for creating extra empty repos - * + * * @return a new empty git repository for testing purposes - * + * * @throws IOException */ protected Repository createNewEmptyRepo() throws IOException { - File newTestRepo = new File(trashParent, "new"+System.currentTimeMillis()+"/.git"); + File newTestRepo = new File(trashParent, "new" + + System.currentTimeMillis() + "/.git"); assertFalse(newTestRepo.exists()); - File unusedDir = new File(trashParent, "tmp"+System.currentTimeMillis()); + File unusedDir = new File(trashParent, "tmp" + + System.currentTimeMillis()); assertTrue(unusedDir.mkdirs()); final Repository newRepo = new Repository(newTestRepo); newRepo.create(); -- 1.5.4.3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html