Browse Source

Replace call to deprecated RevWalk.release() in DescribeCommand

Change-Id: Ie4bfdeb37d345d6ff1525a737f3b7653b2f8e23e
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v4.0.0.201505050340-m2
Matthias Sohn 9 years ago
parent
commit
5f8308bdb9
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java View File

@@ -315,7 +315,7 @@ public class DescribeCommand extends GitCommand<String> {
throw new JGitInternalException(e.getMessage(), e);
} finally {
setCallable(false);
w.release();
w.close();
}
}
}

Loading…
Cancel
Save