LockFileTest: Open Git instance in try-with-resource

Change-Id: Ie2b0e55e606f50c46e21227f23de74dbea8388e5
Signed-off-by: David Pursehouse <david.pursehouse@sonymobile.com>
This commit is contained in:
David Pursehouse 2016-02-15 14:48:02 +09:00
parent 3a6ed050a4
commit 6d33322df4
1 changed files with 18 additions and 17 deletions

View File

@ -61,7 +61,7 @@ public class LockFileTest extends RepositoryTestCase {
@Test
public void lockFailedExceptionRecovery() throws Exception {
Git git = new Git(db);
try (Git git = new Git(db)) {
writeTrashFile("file.txt", "content");
git.add().addFilepattern("file.txt").call();
RevCommit commit1 = git.commit().setMessage("create file").call();
@ -83,3 +83,4 @@ public void lockFailedExceptionRecovery() throws Exception {
}
}
}
}