Browse Source

Merge "Replace call to deprecated RevWalk.release() in DescribeCommand"

stable-4.1
Shawn Pearce 10 years ago committed by Gerrit Code Review @ Eclipse.org
parent
commit
881dfc0147
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java

2
org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java

@ -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