From 2eb969fe8a0d789e0a0b3382aed55f639ff078fd Mon Sep 17 00:00:00 2001 From: Zhao Wei Liew Date: Tue, 24 Jan 2017 21:55:20 +0800 Subject: [PATCH] Revert "allow override of cabc file via property" A quick search reveals that only 1 device uses this - kona. Instead of adding a system prop for this, that one device can add its own AdaptiveBacklight class. This allows kona to use AdaptiveBacklight without having to modify the common class. This reverts commit c11396ecc6738126e84f6262fecbd6021ca20abd. Change-Id: Id912091f64da39a10d30c9770f248cf6467e8760 --- cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java b/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java index 16a3748..8e763e3 100644 --- a/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java +++ b/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java @@ -16,8 +16,6 @@ package org.cyanogenmod.hardware; -import android.os.SystemProperties; - import org.cyanogenmod.internal.util.FileUtils; /** @@ -26,8 +24,7 @@ import org.cyanogenmod.internal.util.FileUtils; */ public class AdaptiveBacklight { - private static final String FILE_CABC = SystemProperties.get( - "ro.cm.hardware.cabc", "/sys/class/lcd/panel/power_reduce"); + private static final String FILE_CABC = "/sys/class/lcd/panel/power_reduce"; /** * Whether device supports an adaptive backlight technology. -- 2.20.1