Merge "[findbugs] Make CheckoutResult constants final"

This commit is contained in:
Shawn Pearce 2010-12-31 17:08:23 -05:00 committed by Code Review
commit 9a3ce780fc
1 changed files with 4 additions and 3 deletions

View File

@ -54,18 +54,19 @@ public class CheckoutResult {
/**
* The {@link Status#OK} result;
*/
public static CheckoutResult OK_RESULT = new CheckoutResult(Status.OK, null);
public static final CheckoutResult OK_RESULT = new CheckoutResult(
Status.OK, null);
/**
* The {@link Status#ERROR} result;
*/
public static CheckoutResult ERROR_RESULT = new CheckoutResult(
public static final CheckoutResult ERROR_RESULT = new CheckoutResult(
Status.ERROR, null);
/**
* The {@link Status#NOT_TRIED} result;
*/
public static CheckoutResult NOT_TRIED_RESULT = new CheckoutResult(
public static final CheckoutResult NOT_TRIED_RESULT = new CheckoutResult(
Status.NOT_TRIED, null);
/**