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