Revert "[Settings] Code Refactor - ActiveSubscip..."

There seems to be an issue on system when a modification on file name get referenced by multiple submit(s).
(ag/15106410 and ag/15102785).

It seems to me that, build system got build breakage immediately instead of merging all of the files (even within same package).

Reason for revert: Try to submit all of the modifications within single submit as a workaround.

Bug: 192204057
Test: build pass
Change-Id: Ie497088a58c6ac564fde193fad2c0b67a965933c
This commit is contained in:
Bonian Chen
2021-06-28 05:39:18 +00:00
parent bc51750bf1
commit d9bf670725
4 changed files with 21 additions and 21 deletions

View File

@@ -77,7 +77,7 @@ public class ProxySubscriptionManager implements LifecycleObserver {
mActiveSubscriptionsListeners =
new ArrayList<OnActiveSubscriptionChangedListener>();
mSubscriptionMonitor = new ActiveSubsciptionsListener(looper, context) {
mSubscriptionMonitor = new ActiveSubscriptionsListener(looper, context) {
public void onChanged() {
notifyAllListeners();
}
@@ -94,7 +94,7 @@ public class ProxySubscriptionManager implements LifecycleObserver {
}
private Lifecycle mLifecycle;
private ActiveSubsciptionsListener mSubscriptionMonitor;
private ActiveSubscriptionsListener mSubscriptionMonitor;
private GlobalSettingsChangeListener mAirplaneModeMonitor;
private List<OnActiveSubscriptionChangedListener> mActiveSubscriptionsListeners;