mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-04 20:30:36 +00:00
Normalize formatting and 'optimize' imports
This commit is contained in:
parent
b681d57b4e
commit
36e3dd559c
49 changed files with 202 additions and 257 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue