Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce2011-01-31 16:37:54 +0000
committerChris Aniszczyk2011-02-01 15:01:58 +0000
commit8f63dface2e08b228cdeb3bef3f93458eab9ce14 (patch)
tree760d8aa6eaf8585a6d67d11f790392e272a4936e /org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java
parenteb5658e629eed524e22cef2c69cbc28e4c8a3f05 (diff)
downloadjgit-8f63dface2e08b228cdeb3bef3f93458eab9ce14.tar.gz
jgit-8f63dface2e08b228cdeb3bef3f93458eab9ce14.tar.xz
jgit-8f63dface2e08b228cdeb3bef3f93458eab9ce14.zip
PackWriter: Correct 'Compressing objects' progress message
The first 'Compressing objects' progress message is wrong, its actually PackWriter looking up the sizes of each object in the ObjectDatabase, so objects can be sorted correctly in the later type-size sort that tries to take advantage of "Linus' Law" to improve delta compression. Rename the progress to say 'Getting sizes', which is an accurate description of what it is doing. Change-Id: Ida0a052ad2f6e994996189ca12959caab9e556a3 Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Chris Aniszczyk <caniszczyk@gmail.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java b/org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java
index 71fa26de48..bd63a42db5 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java
@@ -440,6 +440,7 @@ public class JGitText extends TranslationBundle {
/***/ public String resultLengthIncorrect;
/***/ public String rewinding;
/***/ public String searchForReuse;
+ /***/ public String searchForSizes;
/***/ public String sequenceTooLargeForDiffAlgorithm;
/***/ public String serviceNotPermitted;
/***/ public String shortCompressedStreamAt;

Back to the top