Merge "Do not throw RemoteException for notifyUserActivity" into rvc-dev am: 3e79d2dcf9 am: ce1220b912 am: 713754a8c8 am: 98c076d1e7 am: f00f6c2145

Change-Id: I7bd873bf315a99a5342dfa85c25c3eff17e08a11
This commit is contained in:
Brad Ebinger
2020-05-11 21:35:34 +00:00
committed by Automerger Merge Worker

View File

@@ -13209,7 +13209,9 @@ public class TelephonyManager {
service.userActivity();
}
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
// one-way notification, if telephony is not available, it is okay to not throw
// exception here.
Log.w(TAG, "notifyUserActivity exception: " + e.getMessage());
}
}