Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce2010-06-27 01:34:37 +0000
committerShawn O. Pearce2010-06-27 01:50:38 +0000
commit71aace52f7bfc36c65c92ab54c6f020dffc873ab (patch)
tree40c91f82094f08eb2ba9405f1bde14f26335b6aa /org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties
parent68518ca3aadc83d99e97fcef171b137903d2d05a (diff)
downloadjgit-71aace52f7bfc36c65c92ab54c6f020dffc873ab.tar.gz
jgit-71aace52f7bfc36c65c92ab54c6f020dffc873ab.tar.xz
jgit-71aace52f7bfc36c65c92ab54c6f020dffc873ab.zip
Simplify ObjectLoaders coming from PackFile
We no longer need an ObjectLoader to be lazy and try to delay the materialization of the object content. That was done only to support PackWriter searching for a good reuse candidate. Instead, simplify the code base by doing the materialization immediately when the loader asks for it, because any caller asking for the loader is going to need the content. Change-Id: Id867b1004529744f234ab8f9cfab3d2c52ca3bd0 Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties')
-rw-r--r--org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties b/org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties
index f6e4ea5b4b..aece518741 100644
--- a/org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties
+++ b/org.eclipse.jgit/resources/org/eclipse/jgit/JGitText.properties
@@ -221,6 +221,7 @@ mergeStrategyAlreadyExistsAsDefault=Merge strategy "{0}" already exists as a def
mergeStrategyDoesNotSupportHeads=merge strategy {0} does not support {1} heads to be merged into HEAD
mergeUsingStrategyResultedInDescription=Merge using strategy {0} resulted in: {1}. {2}
missingAccesskey=Missing accesskey.
+missingDeltaBase=delta base
missingForwardImageInGITBinaryPatch=Missing forward-image in GIT binary patch
missingObject=Missing {0} {1}
missingPrerequisiteCommits=missing prerequisite commits:

Back to the top