minor formatting update

This commit is contained in:
tibbi
2017-01-03 19:19:01 +01:00
parent f0c86f4f51
commit d181d8933e

View File

@ -39,7 +39,9 @@ public class Config {
mPrefs.edit().putInt(Constants.BRUSH_COLOR_KEY, color).apply(); mPrefs.edit().putInt(Constants.BRUSH_COLOR_KEY, color).apply();
} }
public int getBackgroundColor() { return mPrefs.getInt(Constants.BACKGROUND_COLOR_KEY, Color.WHITE); } public int getBackgroundColor() {
return mPrefs.getInt(Constants.BACKGROUND_COLOR_KEY, Color.WHITE);
}
public void setBackgroundColor(int color) { public void setBackgroundColor(int color) {
mPrefs.edit().putInt(Constants.BACKGROUND_COLOR_KEY, color).apply(); mPrefs.edit().putInt(Constants.BACKGROUND_COLOR_KEY, color).apply();