From 158d3722d3aa016988aa288d9773af584632ede0 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Fri, 10 Feb 2017 19:48:52 +0900 Subject: [PATCH] IndexDiffSubmoduleTest: Fix negative use count submoduleStandalone is created by createWorkRepository() which adds the created repository to the set of repositories to be closed in the test teardown. It is therefore not necessary to explicitly close it. Change-Id: Ib6f525b644fdeaaf1934df39cc2d3583a0d883dc Signed-off-by: David Pursehouse --- .../tst/org/eclipse/jgit/lib/IndexDiffSubmoduleTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/IndexDiffSubmoduleTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/IndexDiffSubmoduleTest.java index 3259f622f3..0111b9411d 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/IndexDiffSubmoduleTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/lib/IndexDiffSubmoduleTest.java @@ -90,7 +90,6 @@ public class IndexDiffSubmoduleTest extends RepositoryTestCase { .setPath("modules/submodule") .setURI(submoduleStandalone.getDirectory().toURI().toString()) .call(); - submoduleStandalone.close(); submodule_trash = submodule_db.getWorkTree(); addRepoToClose(submodule_db); writeTrashFile("fileInRoot", "root"); -- 2.39.5