From 572db416a0f6f40c8232da9fae84812fd589e7d4 Mon Sep 17 00:00:00 2001 From: Campello Manuel <9112949+CampelloManuel@users.noreply.github.com> Date: Wed, 1 May 2024 10:19:03 +0200 Subject: [PATCH] formatting --- .../com/nononsenseapps/helpers/TimeFormatter.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/main/java/com/nononsenseapps/helpers/TimeFormatter.java b/app/src/main/java/com/nononsenseapps/helpers/TimeFormatter.java index f6d5dcae8..313ba1cfc 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); }