Making constants final
Change-Id: I5e4788ce897593a48fa17ee44dc57e5f208cb081
This commit is contained in:
		| @@ -54,12 +54,12 @@ import java.util.Map; | ||||
| import java.util.Set; | ||||
|  | ||||
| public class Util { | ||||
|   public static AccountGroup.UUID ANONYMOUS = AccountGroup.ANONYMOUS_USERS; | ||||
|   public static AccountGroup.UUID REGISTERED = AccountGroup.REGISTERED_USERS; | ||||
|   public static AccountGroup.UUID ADMIN = new AccountGroup.UUID("test.admin"); | ||||
|   public static AccountGroup.UUID DEVS = new AccountGroup.UUID("test.devs"); | ||||
|   public static final AccountGroup.UUID ANONYMOUS = AccountGroup.ANONYMOUS_USERS; | ||||
|   public static final AccountGroup.UUID REGISTERED = AccountGroup.REGISTERED_USERS; | ||||
|   public static final AccountGroup.UUID ADMIN = new AccountGroup.UUID("test.admin"); | ||||
|   public static final AccountGroup.UUID DEVS = new AccountGroup.UUID("test.devs"); | ||||
|  | ||||
|   public static LabelType CR = category("Code-Review", | ||||
|   public static final LabelType CR = category("Code-Review", | ||||
|       value(2, "Looks good to me, approved"), | ||||
|       value(1, "Looks good to me, but someone else must approve"), | ||||
|       value(0, "No score"), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 alex.ryazantsev
					alex.ryazantsev