AdaptiveBacklight: fix illegal value exception.

Change-Id: I8ea84451c8dd4be35a2d2e62547fc81a2b704dd1
This commit is contained in:
repo Shareef Ali 2014-12-26 23:40:22 -06:00
parent a81d58b35e
commit 50c588b53f

View file

@ -19,6 +19,7 @@ package org.cyanogenmod.hardware;
import org.cyanogenmod.hardware.util.FileUtils;
import android.os.SystemProperties;
import android.text.TextUtils;
import java.io.File;
@ -47,7 +48,7 @@ public class AdaptiveBacklight {
* the operation failed while reading the status; true in any other case.
*/
public static boolean isEnabled() {
if (Integer.parseInt(FileUtils.readOneLine(FILE_CABC)) == 1) {
if (TextUtils.equals(FileUtils.readOneLine(FILE_CABC), "1")) {
return true;
} else {
return false;