SettingsLibTest: Remove OsuProvider#mIcon
mIcon is never used, removing it since it uses @hide API Icon#sameAs(). Bug: 145409537 Test: atest AccessPointTest WifiTrackerTest Change-Id: Id1fe280731e2948c667e07ba8387dfcf2eca4c63
This commit is contained in:
@@ -120,7 +120,7 @@ public class AccessPointTest {
|
||||
private OsuProvider createOsuProvider() {
|
||||
Map<String, String> friendlyNames = new HashMap<>();
|
||||
friendlyNames.put("en", OSU_FRIENDLY_NAME);
|
||||
return new OsuProvider((WifiSsid) null, friendlyNames, null, null, null, null, null);
|
||||
return new OsuProvider((WifiSsid) null, friendlyNames, null, null, null, null);
|
||||
}
|
||||
|
||||
@Before
|
||||
|
||||
@@ -336,7 +336,7 @@ public class WifiTrackerTest {
|
||||
private static OsuProvider buildOsuProvider(String friendlyName) {
|
||||
Map<String, String> friendlyNames = new HashMap<>();
|
||||
friendlyNames.put("en", friendlyName);
|
||||
return new OsuProvider((WifiSsid) null, friendlyNames, null, null, null, null, null);
|
||||
return new OsuProvider((WifiSsid) null, friendlyNames, null, null, null, null);
|
||||
}
|
||||
|
||||
private WifiTracker createTrackerWithImmediateBroadcastsAndInjectInitialScanResults(
|
||||
|
||||
Reference in New Issue
Block a user