Skip to content

Commit

Permalink
Fixing checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumBadger committed Aug 18, 2024
1 parent 23fcfd8 commit 517cb40
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,10 @@ public static void handleUpgrade(@NonNull final Context context) {
if(getAndSetFeatureFlag(prefs, FeatureFlag.DEFAULT_PREF_VIDEO_PLAYBACK_CONTROLS)
== FeatureFlagStatus.UPGRADE_NEEDED) {

prefs.edit()
.putBoolean(
context.getString(R.string.pref_behaviour_video_playback_controls_key),
true)
.apply();
prefs.edit().putBoolean(
context.getString(R.string.pref_behaviour_video_playback_controls_key),
true)
.apply();
}

if(getAndSetFeatureFlag(prefs, FeatureFlag.DEFAULT_PREF_CUSTOM_TABS)
Expand Down

0 comments on commit 517cb40

Please sign in to comment.