diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2011-01-31 08:37:54 -0800 |
---|---|---|
committer | Chris Aniszczyk <caniszczyk@gmail.com> | 2011-02-01 09:01:58 -0600 |
commit | 8f63dface2e08b228cdeb3bef3f93458eab9ce14 (patch) | |
tree | 760d8aa6eaf8585a6d67d11f790392e272a4936e /org.eclipse.jgit/src/org/eclipse/jgit/JGitText.java | |
parent | eb5658e629eed524e22cef2c69cbc28e4c8a3f05 (diff) | |
download | jgit-8f63dface2e08b228cdeb3bef3f93458eab9ce14.tar.gz 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.java | 1 |
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; |