Remove the redundant constructor of SuggestionFeatureProviderImpl

Fix: 175167313
Test: robotest
Change-Id: I7ebbaf92398a8300971d592e2ee7a6e0d82c1d2f
This commit is contained in:
Chaohui Wang
2022-03-29 11:49:34 +08:00
parent ae9d768549
commit 80a11a251e
21 changed files with 36 additions and 59 deletions

View File

@@ -145,7 +145,7 @@ public class SwipeToNotificationPreferenceControllerTest {
.thenReturn(true);
// No stored value in shared preferences if not visited yet.
final Context context = RuntimeEnvironment.application;
final SharedPreferences prefs = new SuggestionFeatureProviderImpl(context)
final SharedPreferences prefs = new SuggestionFeatureProviderImpl()
.getSharedPrefs(context);
assertThat(SwipeToNotificationPreferenceController.isSuggestionComplete(mContext, prefs))
@@ -161,7 +161,7 @@ public class SwipeToNotificationPreferenceControllerTest {
.thenReturn(true);
// No stored value in shared preferences if not visited yet.
final Context context = RuntimeEnvironment.application;
final SharedPreferences prefs = new SuggestionFeatureProviderImpl(context)
final SharedPreferences prefs = new SuggestionFeatureProviderImpl()
.getSharedPrefs(context);
prefs.edit()
.putBoolean(SwipeToNotificationSettings.PREF_KEY_SUGGESTION_COMPLETE, true)