Remove OnPropertyChangedListener.

This listener was @removed in Q, and is removed entirely after this.

Test: atest SettingsProviderTest:DeviceConfigServiceTest
      atest FrameworksCoreTests:DeviceConfigTest
Bug: 128902955

Change-Id: I5021dfcd05118598cd6fb0a9c9724834de9c4ae0
This commit is contained in:
Matt Pape
2019-05-08 13:09:28 -07:00
parent d9b1e5abfa
commit 0a2002209c
5 changed files with 0 additions and 180 deletions

View File

@@ -158,19 +158,6 @@ package android.os {
}
package android.provider {
public final class DeviceConfig {
method @RequiresPermission(android.Manifest.permission.READ_DEVICE_CONFIG) public static void addOnPropertyChangedListener(@NonNull String, @NonNull java.util.concurrent.Executor, @NonNull android.provider.DeviceConfig.OnPropertyChangedListener);
method public static void removeOnPropertyChangedListener(@NonNull android.provider.DeviceConfig.OnPropertyChangedListener);
}
public static interface DeviceConfig.OnPropertyChangedListener {
method public void onPropertyChanged(@NonNull String, @NonNull String, @Nullable String);
}
}
package android.service.notification {
public abstract class NotificationListenerService extends android.app.Service {

View File

@@ -8,16 +8,3 @@ package android.app.prediction {
}
package android.provider {
public final class DeviceConfig {
method @RequiresPermission("android.permission.READ_DEVICE_CONFIG") public static void addOnPropertyChangedListener(@NonNull String, @NonNull java.util.concurrent.Executor, @NonNull android.provider.DeviceConfig.OnPropertyChangedListener);
method public static void removeOnPropertyChangedListener(@NonNull android.provider.DeviceConfig.OnPropertyChangedListener);
}
public static interface DeviceConfig.OnPropertyChangedListener {
method public void onPropertyChanged(@NonNull String, @NonNull String, @Nullable String);
}
}