Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3873fd0c authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Return 0 instead of throwing RuntimeException from getSmsCapacityOnIcc"...

Merge "Return 0 instead of throwing RuntimeException from getSmsCapacityOnIcc" am: 258ecb55 am: e8ed5b17

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1643623

Change-Id: Ic7929c8345ac56031c9e64c1d2df7ce7aa27825f
parents fedc9228 e8ed5b17
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2127,7 +2127,7 @@ public final class SmsManager {
                ret = iccISms.getSmsCapacityOnIccForSubscriber(getSubscriptionId());
            }
        } catch (RemoteException ex) {
            throw new RuntimeException(ex);
            Log.e(TAG, "getSmsCapacityOnIcc() RemoteException", ex);
        }
        return ret;
    }