Browse Source

[findbugs] Make mutable static field final

Change-Id: I310bc2093571bf22a58106f09706cc3eb43a2453
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v0.12.1
Matthias Sohn 13 years ago
parent
commit
7aec8247c1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java

+ 1
- 1
org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java View 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);

/**

Loading…
Cancel
Save