Merge "Fix typo in MemtagHelper" into udc-dev

This commit is contained in:
Florian Mayer
2023-05-01 10:26:47 +00:00
committed by Android (Google) Code Review

View File

@@ -30,7 +30,7 @@ public class MemtagHelper {
"persist.device_config.runtime_native_boot.bootloader_override";
public static boolean isForcedOff() {
return TextUtils.equals("force_on", SystemProperties.get(DEVICE_CONFIG_PROP));
return TextUtils.equals("force_off", SystemProperties.get(DEVICE_CONFIG_PROP));
}
public static boolean isForcedOn() {