Normalize formatting and 'optimize' imports

This commit is contained in:
Alexander Bakker 2019-04-04 14:07:36 +02:00
parent b681d57b4e
commit 36e3dd559c
49 changed files with 202 additions and 257 deletions

View file

@ -6,7 +6,7 @@ public enum Theme {
AMOLED;
public static Theme fromInteger(int x) {
switch(x) {
switch (x) {
case 0:
return LIGHT;
case 1:
@ -18,7 +18,7 @@ public enum Theme {
}
public static String getThemeName(int x) {
switch(x) {
switch (x) {
case 0:
return "Light theme";
case 1:
@ -30,7 +30,7 @@ public enum Theme {
}
public static String[] getThemeNames() {
return new String[] {
return new String[]{
"Light theme",
"Dark theme",
"Amoled theme"