Merge "Use try-with-resource to close resources in CloneCommand"

This commit is contained in:
Shawn Pearce 2015-04-08 15:29:52 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit b2bba1419f
1 changed files with 1 additions and 4 deletions

View File

@ -322,12 +322,9 @@ private void addMergeConfig(Repository clonedRepo, Ref head)
private RevCommit parseCommit(final Repository clonedRepo, final Ref ref) private RevCommit parseCommit(final Repository clonedRepo, final Ref ref)
throws MissingObjectException, IncorrectObjectTypeException, throws MissingObjectException, IncorrectObjectTypeException,
IOException { IOException {
final RevWalk rw = new RevWalk(clonedRepo);
final RevCommit commit; final RevCommit commit;
try { try (final RevWalk rw = new RevWalk(clonedRepo)) {
commit = rw.parseCommit(ref.getObjectId()); commit = rw.parseCommit(ref.getObjectId());
} finally {
rw.release();
} }
return commit; return commit;
} }