Loading src/java/com/android/internal/telephony/util/TelephonyUtils.java +8 −4 Original line number Diff line number Diff line Loading @@ -16,6 +16,7 @@ package com.android.internal.telephony.util; import android.annotation.Nullable; import android.os.SystemProperties; /** * This class provides various util functions Loading @@ -25,4 +26,7 @@ public final class TelephonyUtils { public static String emptyIfNull(@Nullable String str) { return str == null ? "" : str; } public static boolean IS_DEBUGGABLE = SystemProperties.getInt("ro.debuggable", 0) == 1; } Loading
src/java/com/android/internal/telephony/util/TelephonyUtils.java +8 −4 Original line number Diff line number Diff line Loading @@ -16,6 +16,7 @@ package com.android.internal.telephony.util; import android.annotation.Nullable; import android.os.SystemProperties; /** * This class provides various util functions Loading @@ -25,4 +26,7 @@ public final class TelephonyUtils { public static String emptyIfNull(@Nullable String str) { return str == null ? "" : str; } public static boolean IS_DEBUGGABLE = SystemProperties.getInt("ro.debuggable", 0) == 1; }