]> source.dussan.org Git - jgit.git/commitdiff
Silence non-externalized string warning in PackParser 84/45284/1
authorMatthias Sohn <matthias.sohn@sap.com>
Fri, 3 Apr 2015 22:54:24 +0000 (00:54 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Fri, 3 Apr 2015 22:54:24 +0000 (00:54 +0200)
Change-Id: I1a4181fc292c42157c69479f71c7674b2e00d2ce
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/transport/PackParser.java

index de52a4bb35c94ea6b0abc62ee79c1986f1fb3dea..04abe22323d2680246632ec01d0261f2962e6237 100644 (file)
@@ -812,7 +812,7 @@ public abstract class PackParser {
 
                for (final DeltaChain base : missing) {
                        if (base.head != null)
-                               throw new MissingObjectException(base, "delta base");
+                               throw new MissingObjectException(base, "delta base"); //$NON-NLS-1$
                }
 
                onEndThinPack();