Loading core/java/android/app/ContextImpl.java +2 −1 Original line number Diff line number Diff line Loading @@ -3039,7 +3039,8 @@ class ContextImpl extends Context { public void updateDeviceId(int updatedDeviceId) { if (!isValidDeviceId(updatedDeviceId)) { throw new IllegalArgumentException( "Not a valid ID of the default device or any virtual device: " + mDeviceId); "Not a valid ID of the default device or any virtual device: " + updatedDeviceId); } if (mIsExplicitDeviceId) { throw new UnsupportedOperationException( Loading Loading
core/java/android/app/ContextImpl.java +2 −1 Original line number Diff line number Diff line Loading @@ -3039,7 +3039,8 @@ class ContextImpl extends Context { public void updateDeviceId(int updatedDeviceId) { if (!isValidDeviceId(updatedDeviceId)) { throw new IllegalArgumentException( "Not a valid ID of the default device or any virtual device: " + mDeviceId); "Not a valid ID of the default device or any virtual device: " + updatedDeviceId); } if (mIsExplicitDeviceId) { throw new UnsupportedOperationException( Loading