Merge "Add new no-op interface method."

am: 78bfc6f55f

Change-Id: I9dd3e64ad11886d852ed0db15830aa93f4f63dfc
This commit is contained in:
Jeff Sharkey
2018-01-19 01:04:49 +00:00
committed by android-build-merger

View File

@@ -206,6 +206,10 @@ public class DataSaverBackend {
public void onRestrictBackgroundChanged(final boolean isDataSaving) throws RemoteException {
mHandler.post(() -> handleRestrictBackgroundChanged(isDataSaving));
}
@Override
public void onSubscriptionOverride(int subId, int overrideMask, int overrideValue) {
}
};
public interface Listener {