Browse Source

Add progress monitor step to first phase of GC commit selection

Change-Id: I10e3d53de5e2b1fc1be9a59b236da5780473d841
Signed-off-by: Terry Parker <tparker@google.com>
stable-5.1
Terry Parker 6 years ago
parent
commit
7fe15d4428
  1. 1
      org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriterBitmapPreparer.java

1
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriterBitmapPreparer.java

@ -452,6 +452,7 @@ class PackWriterBitmapPreparer {
RevCommit rc; RevCommit rc;
while ((rc = rw.next()) != null && pos > 0) { while ((rc = rw.next()) != null && pos > 0) {
commits[--pos] = rc; commits[--pos] = rc;
pm.update(1);
} }
// Sort the new wants by reverse commit time. // Sort the new wants by reverse commit time.

Loading…
Cancel
Save