swap green and white in color order choices. (#6630)

This commit is contained in:
John 2020-06-11 15:59:54 -07:00 committed by GitHub
parent eaa5fed464
commit 717b3da6f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,11 +16,11 @@ public class ChoiceColor extends ChoiceImpl {
public static List<String> getBaseColors() { public static List<String> getBaseColors() {
List<String> arr = new ArrayList<>(); List<String> arr = new ArrayList<>();
arr.add("Green"); arr.add("White");
arr.add("Blue"); arr.add("Blue");
arr.add("Black"); arr.add("Black");
arr.add("Red"); arr.add("Red");
arr.add("White"); arr.add("Green");
return arr; return arr;
} }