From a9a3ce92aab43ab442160dce310941eab769f7b9 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Fri, 10 Feb 2017 19:51:52 +0900 Subject: [PATCH] LocalDiskRepositoryTestCase: Add clarifying comment in call to createRepository Clarify that 'true' means 'auto close'. This makes it consistent with other calls that have a boolean argument for 'bare'. It also makes it a bit easier to see what's going on while stepping in the debugger, because it's not necessary to scroll around to find the method declaration. Change-Id: Idacd749407dcfd258af3efaaf44d129069925dd3 Signed-off-by: David Pursehouse --- .../src/org/eclipse/jgit/junit/LocalDiskRepositoryTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/LocalDiskRepositoryTestCase.java b/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/LocalDiskRepositoryTestCase.java index ceb045235..b7929424f 100644 --- a/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/LocalDiskRepositoryTestCase.java +++ b/org.eclipse.jgit.junit/src/org/eclipse/jgit/junit/LocalDiskRepositoryTestCase.java @@ -361,7 +361,7 @@ protected FileRepository createWorkRepository() throws IOException { */ private FileRepository createRepository(boolean bare) throws IOException { - return createRepository(bare, true); + return createRepository(bare, true /* auto close */); } /**