summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2011-04-03 00:32:37 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2011-04-03 00:32:37 +0200
commit7aec8247c1ecd8e75f1e41a3d06bd69022d38486 (patch)
tree3b82ad76c5656daa72dd0cdb0b8eb59829b97370
parent7b3a6ef5306154240030a6de528bde0c482db0dd (diff)
downloadjgit-7aec8247c1ecd8e75f1e41a3d06bd69022d38486.tar.gz
jgit-7aec8247c1ecd8e75f1e41a3d06bd69022d38486.zip
[findbugs] Make mutable static field final
Change-Id: I310bc2093571bf22a58106f09706cc3eb43a2453 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java
index 45b3dd7b21..d4b6dcb65a 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java
@@ -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);
/**