remove trailing white space...

This commit is contained in:
Hans-Christoph Steiner 2014-02-19 19:59:31 -05:00
parent 3a0d40d86d
commit 301ac10515
5 changed files with 11 additions and 9 deletions

View File

@ -58,6 +58,7 @@ public class FDroidApp extends Application {
private static enum Theme { private static enum Theme {
dark, light dark, light
} }
private static Theme curTheme = Theme.dark; private static Theme curTheme = Theme.dark;
public void reloadTheme() { public void reloadTheme() {
@ -65,6 +66,7 @@ public class FDroidApp extends Application {
.getDefaultSharedPreferences(getBaseContext()) .getDefaultSharedPreferences(getBaseContext())
.getString(Preferences.PREF_THEME, "dark")); .getString(Preferences.PREF_THEME, "dark"));
} }
public void applyTheme(Activity activity) { public void applyTheme(Activity activity) {
switch (curTheme) { switch (curTheme) {
case dark: case dark: