From: Matthias Sohn Date: Wed, 1 Apr 2015 22:51:02 +0000 (+0200) Subject: Silence warning for non-translatable String in AddNoteCommand X-Git-Tag: v4.0.0.201505050340-m2~1^2~16^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fchanges%2F87%2F45087%2F1;p=jgit.git Silence warning for non-translatable String in AddNoteCommand Change-Id: Iad4d41271eff4e8744efece5bc777c1cb06dead7 Signed-off-by: Matthias Sohn --- diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/AddNoteCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/AddNoteCommand.java index f4ff5ce040..9cf888195e 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/AddNoteCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/AddNoteCommand.java @@ -95,7 +95,7 @@ public class AddNoteCommand extends GitCommand { } 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);