]> source.dussan.org Git - jgit.git/commitdiff
Suppress not-externalized string warnings 72/1172672/1
authorMatthias Sohn <matthias.sohn@sap.com>
Tue, 28 Nov 2023 23:09:52 +0000 (00:09 +0100)
committerMatthias Sohn <matthias.sohn@sap.com>
Tue, 28 Nov 2023 23:09:52 +0000 (00:09 +0100)
Change-Id: I2a0a588227d451cb175e17eef20ecb6fe9e9ef80

org.eclipse.jgit/src/org/eclipse/jgit/revwalk/FooterLine.java

index cadeaec6e0a77180abf4c044aea42032b424d10f..f4f4764739acd70e9e762016ab636be4dff301b6 100644 (file)
@@ -200,7 +200,7 @@ public final class FooterLine {
         *         character encoding.
         */
        public String getValue() {
-               return RawParseUtils.decode(enc, buffer, valStart, valEnd).replaceAll("\n +", " ");
+               return RawParseUtils.decode(enc, buffer, valStart, valEnd).replaceAll("\n +", " "); //$NON-NLS-1$ //$NON-NLS-2$
        }
 
        /**