diff --git a/app/src/main/java/com/nononsenseapps/helpers/TimeFormatter.java b/app/src/main/java/com/nononsenseapps/helpers/TimeFormatter.java index f6d5dcae..313ba1cf 100644 --- a/app/src/main/java/com/nononsenseapps/helpers/TimeFormatter.java +++ b/app/src/main/java/com/nononsenseapps/helpers/TimeFormatter.java @@ -239,7 +239,8 @@ public static SimpleDateFormat getLocalFormatterMicro(final Context context) { */ public static SimpleDateFormat getLocalFormatterWeekday(final Context context) { return getLocalFormatter(context, - PreferenceManager.getDefaultSharedPreferences(context) + PreferenceManager + .getDefaultSharedPreferences(context) .getString(context.getString(R.string.pref_locale), ""), context.getString(R.string.dateformat_weekday)); } @@ -247,11 +248,10 @@ public static SimpleDateFormat getLocalFormatterWeekday(final Context context) { /** * Good for performance critical situations, like lists */ - public static SimpleDateFormat getLocalFormatterWeekdayShort( - final Context context) { - return getLocalFormatter( - context, - PreferenceManager.getDefaultSharedPreferences(context) + public static SimpleDateFormat getLocalFormatterWeekdayShort(final Context context) { + return getLocalFormatter(context, + PreferenceManager + .getDefaultSharedPreferences(context) .getString(context.getString(R.string.pref_locale), ""), WEEKDAY_SHORTEST_FORMAT); }