]> source.dussan.org Git - jgit.git/commitdiff
Silence warning for non-translatable String in AddNoteCommand 87/45087/1
authorMatthias Sohn <matthias.sohn@sap.com>
Wed, 1 Apr 2015 22:51:02 +0000 (00:51 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Wed, 1 Apr 2015 22:51:02 +0000 (00:51 +0200)
Change-Id: Iad4d41271eff4e8744efece5bc777c1cb06dead7
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/api/AddNoteCommand.java

index f4ff5ce040b4c23ed2352351ba00385fb97acc42..9cf888195e7fca540462fa6457bd427b0e04390f 100644 (file)
@@ -95,7 +95,7 @@ public class AddNoteCommand extends GitCommand<Note> {
                        }
                        map.set(id, message, inserter);
                        commitNoteMap(walk, map, notesCommit, inserter,
-                                       "Notes added by 'git notes add'");
+                                       "Notes added by 'git notes add'"); //$NON-NLS-1$
                        return map.getNote(id);
                } catch (IOException e) {
                        throw new JGitInternalException(e.getMessage(), e);