diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2015-10-10 19:38:52 -0400 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | 2015-10-10 19:38:54 -0400 |
commit | 50d6fbcdae314d471186ae25ef2ae2639a10c277 (patch) | |
tree | 2ccb38b24d68da6adbd171db56b1518ba639c5f2 /org.eclipse.jgit | |
parent | 7673d84624c98a3e294c64367db0a54ea0a65a03 (diff) | |
parent | 9bdbbd32ae02056f63657154aa32295f0c1f8c05 (diff) | |
download | jgit-50d6fbcdae314d471186ae25ef2ae2639a10c277.tar.gz jgit-50d6fbcdae314d471186ae25ef2ae2639a10c277.zip |
Merge "Don't call reader.close() 2 times on dispose()"
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevWalk.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevWalk.java b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevWalk.java index 1176d958b0..c8504937a7 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevWalk.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevWalk.java @@ -1295,7 +1295,6 @@ public class RevWalk implements Iterable<RevCommit>, AutoCloseable { retainOnReset = 0; carryFlags = UNINTERESTING; objects.clear(); - reader.close(); roots.clear(); queue = new DateRevQueue(); pending = new StartGenerator(this); |