From 6feb7bc9dd490c291587d863beb9c7363260d29d Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Sat, 4 Apr 2015 00:51:05 +0200 Subject: [PATCH] Silence non-externalized string warning in PackIndexV2 Change-Id: I8c94811972c593c898f6375178f250a2123d01c6 Signed-off-by: Matthias Sohn --- .../src/org/eclipse/jgit/internal/storage/file/PackIndexV2.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackIndexV2.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackIndexV2.java index 70cf20fb9..cb8c91a5a 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackIndexV2.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackIndexV2.java @@ -232,7 +232,7 @@ class PackIndexV2 extends PackIndex { final int levelOne = objId.getFirstByte(); final int levelTwo = binarySearchLevelTwo(objId, levelOne); if (levelTwo == -1) - throw new MissingObjectException(objId.copy(), "unknown"); + throw new MissingObjectException(objId.copy(), "unknown"); //$NON-NLS-1$ return NB.decodeUInt32(crc32[levelOne], levelTwo << 2); }