Merge "Remove the redundant constructor of SuggestionFeatureProviderImpl"

This commit is contained in:
Chaohui Wang
2022-08-08 06:47:18 +00:00
committed by Android (Google) Code Review
21 changed files with 36 additions and 59 deletions

View File

@@ -73,7 +73,7 @@ public class SuggestionFeatureProviderImplTest {
when(mContext.getSystemService(Context.ACTIVITY_SERVICE)).thenReturn(mActivityManager);
when(mActivityManager.isLowRamDevice()).thenReturn(false);
mProvider = new SuggestionFeatureProviderImpl(mContext);
mProvider = new SuggestionFeatureProviderImpl();
}
@Test