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

Commit 531fdda3 authored by Danny Baumann's avatar Danny Baumann Committed by Gerrit Code Review
Browse files

Remove some useless debug spam.

Change-Id: I688c15dc179a6895a4cf3b136acddd2a02bd0fa9
parent f367a7af
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1277,7 +1277,6 @@ public class SubscriptionManager {
        } catch (RemoteException ex) {
            simState = TelephonyManager.SIM_STATE_UNKNOWN;
        }
        logd("getSimStateForSubscriber: simState=" + simState + " subId=" + subId);
        return simState;
    }
}
+1 −4
Original line number Diff line number Diff line
@@ -1659,9 +1659,7 @@ public class TelephonyManager {
            Rlog.d(TAG, "getSimState:- empty subId return SIM_STATE_ABSENT");
            return SIM_STATE_UNKNOWN;
        }
        int simState = SubscriptionManager.getSimStateForSubscriber(subId[0]);
        Rlog.d(TAG, "getSimState: simState=" + simState + " slotIdx=" + slotIdx);
        return simState;
        return SubscriptionManager.getSimStateForSubscriber(subId[0]);
    }

    /**
@@ -1711,7 +1709,6 @@ public class TelephonyManager {
                }
            }
        }
        Rlog.d(TAG, "getSimOperatorNumeric(): default subId=" + subId);
        return getSimOperatorNumericForSubscription(subId);
    }