summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2015-04-02 00:51:02 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2015-04-02 00:51:02 +0200
commit114dee677076e842a5af12e9fb197d6199f5d53f (patch)
tree8f3ff25798f763557bc0b6733bfe818c9b10fb27
parent3206f37cc3b9e500bd531e72310b7a3987114d6e (diff)
downloadjgit-114dee677076e842a5af12e9fb197d6199f5d53f.tar.gz
jgit-114dee677076e842a5af12e9fb197d6199f5d53f.zip
Silence warning for non-translatable String in AddNoteCommand
Change-Id: Iad4d41271eff4e8744efece5bc777c1cb06dead7 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/AddNoteCommand.java2
1 files changed, 1 insertions, 1 deletions
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<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);