]> source.dussan.org Git - jgit.git/commitdiff
Fix warnings about non-externalized string literals 72/194372/1
authorThomas Wolf <thomas.wolf@paranor.ch>
Thu, 23 Jun 2022 18:32:47 +0000 (20:32 +0200)
committerThomas Wolf <thomas.wolf@paranor.ch>
Thu, 23 Jun 2022 18:34:35 +0000 (20:34 +0200)
Four occurrences in RefSpec marked with //$NON-NLS-<n>$.

Change-Id: Ie603a58c41357562f0739445e3fe77ca87a3eb54
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
org.eclipse.jgit/src/org/eclipse/jgit/transport/RefSpec.java

index e36eeccfb155147bf7ab9454bfc42aa3e55128df..61d193593ac1ff036ce161cf04a60d0f742c0588 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008, 2013 Shawn O. Pearce <spearce@spearce.org> and others
+ * Copyright (C) 2008, 2022 Shawn O. Pearce <spearce@spearce.org> and others
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Distribution License v. 1.0 which is available at
@@ -154,7 +154,7 @@ public class RefSpec implements Serializable {
                this.allowMismatchedWildcards = mode;
                String s = spec;
 
-               if (s.startsWith("^+") || s.startsWith("+^")) {
+               if (s.startsWith("^+") || s.startsWith("+^")) { //$NON-NLS-1$ //$NON-NLS-2$
                        throw new IllegalArgumentException(
                                        JGitText.get().invalidNegativeAndForce);
                }
@@ -164,7 +164,7 @@ public class RefSpec implements Serializable {
                        s = s.substring(1);
                }
 
-               if(s.startsWith("^")) {
+               if (s.startsWith("^")) { //$NON-NLS-1$
                        negative = true;
                        s = s.substring(1);
                }
@@ -251,7 +251,7 @@ public class RefSpec implements Serializable {
         *             the specification is invalid.
         */
        public RefSpec(String spec) {
-               this(spec, spec.startsWith("^") ? WildcardMode.ALLOW_MISMATCH
+               this(spec, spec.startsWith("^") ? WildcardMode.ALLOW_MISMATCH //$NON-NLS-1$
                                : WildcardMode.REQUIRE_MATCH);
        }