Merge "Do not throw RemoteException for notifyUserActivity" into rvc-dev am: 3e79d2dcf9

Change-Id: Ie9a42c1358284f6c94fd1bc1a1afa5b11a08385f
This commit is contained in:
Brad Ebinger
2020-05-12 20:07:36 +00:00
committed by Automerger Merge Worker

View File

@@ -13098,7 +13098,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());
}
}