diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2020-12-15 01:53:01 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2020-12-15 02:00:35 +0100 |
commit | 8548cb4e51894d5e10a06e82921dd1e1f9c6ea66 (patch) | |
tree | 1d1a569de1325a5a15704420932a0bb64aa7917d /org.eclipse.jgit.pgm | |
parent | 3fc8da3a3ca875fba96de71f38b257444322415e (diff) | |
download | jgit-8548cb4e51894d5e10a06e82921dd1e1f9c6ea66.tar.gz jgit-8548cb4e51894d5e10a06e82921dd1e1f9c6ea66.zip |
LsRemote: suppress warning for non-externalized string
Change-Id: Ic1d8f2eef4a8de0a75d5b523b584b1ac275a8811
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.pgm')
-rw-r--r-- | org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/LsRemote.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/LsRemote.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/LsRemote.java index 055b48a157..83446ccd53 100644 --- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/LsRemote.java +++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/LsRemote.java @@ -79,7 +79,7 @@ class LsRemote extends TextBuiltin { private void show(Ref ref, String name) throws IOException { - outw.print("ref: "); + outw.print("ref: "); //$NON-NLS-1$ outw.print(ref.getName()); outw.print('\t'); outw.print(name); |