]> source.dussan.org Git - jgit.git/commitdiff
Silence non-externalized string warning in PackIndexV2 82/45282/1
authorMatthias Sohn <matthias.sohn@sap.com>
Fri, 3 Apr 2015 22:51:05 +0000 (00:51 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Fri, 3 Apr 2015 22:51:05 +0000 (00:51 +0200)
Change-Id: I8c94811972c593c898f6375178f250a2123d01c6
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/PackIndexV2.java

index 70cf20fb993c4ed0a98cdc1bad3104837eaed2d9..cb8c91a5a75141830dd693023ae7ca1a08fa3224 100644 (file)
@@ -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);
        }