Fix typo in MemtagHelper

Bug: 280034968
Change-Id: I5977925399342cd79f0bed2dd4af0e21c0c20102
This commit is contained in:
Florian Mayer
2023-04-28 14:54:30 +00:00
parent fec25d4bad
commit 411d78c06c

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() {