Merge "Return "" not "null""
am: eebbd2b639
Change-Id: I6b4df3293ee59aa7d0798c840fb3a6131db70645
This commit is contained in:
3
core/java/android/os/Build.java
Normal file → Executable file
3
core/java/android/os/Build.java
Normal file → Executable file
@@ -1113,7 +1113,8 @@ public class Build {
|
||||
* null (if, for instance, the radio is not currently on).
|
||||
*/
|
||||
public static String getRadioVersion() {
|
||||
return SystemProperties.get(TelephonyProperties.PROPERTY_BASEBAND_VERSION, null);
|
||||
String propVal = SystemProperties.get(TelephonyProperties.PROPERTY_BASEBAND_VERSION);
|
||||
return TextUtils.isEmpty(propVal) ? null : propVal;
|
||||
}
|
||||
|
||||
private static String getString(String property) {
|
||||
|
||||
Reference in New Issue
Block a user