]> source.dussan.org Git - jgit.git/commitdiff
[findbugs] Make mutable static field final 95/2995/1
authorMatthias Sohn <matthias.sohn@sap.com>
Sat, 2 Apr 2011 22:32:37 +0000 (00:32 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Sat, 2 Apr 2011 22:32:37 +0000 (00:32 +0200)
Change-Id: I310bc2093571bf22a58106f09706cc3eb43a2453
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java

index 45b3dd7b217993ece7d3e7a24c206267a72aaaa3..d4b6dcb65a854f7e8e20dfa00da5156a8dec06db 100644 (file)
@@ -124,7 +124,7 @@ public class CherryPickResult {
         * A <code>CherryPickResult</code> with status
         * {@link CherryPickStatus#CONFLICTING}
         */
-       public static CherryPickResult CONFLICT = new CherryPickResult(
+       public static final CherryPickResult CONFLICT = new CherryPickResult(
                        CherryPickStatus.CONFLICTING);
 
        /**