Loading src/java/com/android/internal/telephony/PhoneConfigurationManager.java +2 −2 Original line number Diff line number Diff line Loading @@ -201,12 +201,12 @@ public class PhoneConfigurationManager { /** * Get whether reboot is required or not after making changes to modem configurations. * Return value defaults to false * Return value defaults to true */ public boolean isRebootRequiredForModemConfigChange() { String rebootRequired = SystemProperties.get( TelephonyProperties.PROPERTY_REBOOT_REQUIRED_ON_MODEM_CHANGE); return rebootRequired.equals("true"); return !rebootRequired.equals("false"); } /** Loading Loading
src/java/com/android/internal/telephony/PhoneConfigurationManager.java +2 −2 Original line number Diff line number Diff line Loading @@ -201,12 +201,12 @@ public class PhoneConfigurationManager { /** * Get whether reboot is required or not after making changes to modem configurations. * Return value defaults to false * Return value defaults to true */ public boolean isRebootRequiredForModemConfigChange() { String rebootRequired = SystemProperties.get( TelephonyProperties.PROPERTY_REBOOT_REQUIRED_ON_MODEM_CHANGE); return rebootRequired.equals("true"); return !rebootRequired.equals("false"); } /** Loading