Browse Source

[findbugs] Make mutable static field final

Change-Id: I310bc2093571bf22a58106f09706cc3eb43a2453
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-0.12
Matthias Sohn 14 years ago
parent
commit
7aec8247c1
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/api/CherryPickResult.java

2
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);
/**

Loading…
Cancel
Save