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

Commit 4bad63af authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Set empty string to the property if value is null"

parents 193febcb f3365ab4
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -957,6 +957,10 @@ public class MSimTelephonyManager {
        String p[] = null;
        String prop = SystemProperties.get(property);

        if (value == null) {
            value = "";
        }

        if (prop != null) {
            p = prop.split(",");
        }