Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2019-09-05 22:52:48 +0000
committerMatthias Sohn2019-09-06 23:19:07 +0000
commit185dc846234608b282d7bdab0f8898dd29d4ebd3 (patch)
treee3de20c0a341ae0cb6bd21c61c0dc70a523c0123
parent8792743c5123032634b6ea8835fc00862996c0e9 (diff)
downloadjgit-185dc846234608b282d7bdab0f8898dd29d4ebd3.tar.gz
jgit-185dc846234608b282d7bdab0f8898dd29d4ebd3.tar.xz
jgit-185dc846234608b282d7bdab0f8898dd29d4ebd3.zip
Fix wrong placeholder index in error message packInaccessible
See: https://www.eclipse.org/lists/jgit-dev/msg03850.html Change-Id: I0e121a2b7ac399f4a663fa49ab330d27363e9a55 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties b/org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties
index 918ec41b21..fb454d6f2e 100644
--- a/org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties
+++ b/org.eclipse.jgit/resources/org/eclipse/jgit/internal/JGitText.properties
@@ -472,7 +472,7 @@ packfileIsTruncated=Packfile {0} is truncated.
packfileIsTruncatedNoParam=Packfile is truncated.
packHandleIsStale=Pack file {0} handle is stale, removing it from pack list
packHasUnresolvedDeltas=pack has unresolved deltas
-packInaccessible=Failed to access pack file {0}, caught {2} consecutive errors while trying to access this pack.
+packInaccessible=Failed to access pack file {0}, caught {1} consecutive errors while trying to access this pack.
packingCancelledDuringObjectsWriting=Packing cancelled during objects writing
packObjectCountMismatch=Pack object count mismatch: pack {0} index {1}: {2}
packRefs=Pack refs

Back to the top