diff options
author | Shawn Pearce <spearce@spearce.org> | 2017-09-06 11:12:34 -0700 |
---|---|---|
committer | Shawn Pearce <spearce@spearce.org> | 2017-09-06 11:12:34 -0700 |
commit | f0a40b19334cdeeaab7f08269446d9901e26b175 (patch) | |
tree | 9f2ab2bcab39908bc127cbef0938712d95d49a66 | |
parent | b23dfe16160af1238db6ed295e8f47438791cbfc (diff) | |
download | jgit-f0a40b19334cdeeaab7f08269446d9901e26b175.tar.gz jgit-f0a40b19334cdeeaab7f08269446d9901e26b175.zip |
Remove dead warning about minUpdaeIndex and maxUpdateIndex affecting refresh
DfsGarbageCollector always performs refreshes. This warning was from
a prior iteration of the patch set and should have been removed before
the change was merged.
Change-Id: Id4750bb6c1c177e1ef040fd22912f434bbb5e992
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/DfsGarbageCollector.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/DfsGarbageCollector.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/DfsGarbageCollector.java index 7914d587a3..06e5422a5c 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/DfsGarbageCollector.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/DfsGarbageCollector.java @@ -173,11 +173,6 @@ public class DfsGarbageCollector { /** * Set minUpdateIndex for the initial reftable created during conversion. - * <p> - * <b>Warning:</b> A setting {@code != 1} <b>disables cache refreshes</b> - * normally performed at the start of {@link #pack(ProgressMonitor)}. - * Callers must ensure the reference cache is current and will have been - * read before the pack list. * * @param u * minUpdateIndex for the initial reftable created by scanning @@ -193,11 +188,6 @@ public class DfsGarbageCollector { /** * Set maxUpdateIndex for the initial reftable created during conversion. - * <p> - * <b>Warning:</b> A setting {@code != 1} <b>disables cache refreshes</b> - * normally performed at the start of {@link #pack(ProgressMonitor)}. - * Callers must ensure the reference cache is current and will have been - * read before the pack list. * * @param u * maxUpdateIndex for the initial reftable created by scanning |