diff options
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackReverseIndexV1.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackReverseIndexV1.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackReverseIndexV1.java index c77a8eb761..6a47352124 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackReverseIndexV1.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackReverseIndexV1.java @@ -66,7 +66,7 @@ final class PackReverseIndexV1 implements PackReverseIndex { this.objectCount = Math.toIntExact(objectCount); } catch (ArithmeticException e) { throw new IllegalArgumentException( - JGitText.get().hugeIndexesAreNotSupportedByJgitYet); + JGitText.get().hugeIndexesAreNotSupportedByJgitYet, e); } this.inputStream = inputStream; |