AdaptiveBacklight: fix illegal value exception.

Change-Id: I8ea84451c8dd4be35a2d2e62547fc81a2b704dd1
diff --git a/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java b/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java
index e39e2fa..10f7d20 100644
--- a/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java
+++ b/cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java
@@ -19,6 +19,7 @@
 import org.cyanogenmod.hardware.util.FileUtils;
 
 import android.os.SystemProperties;
+import android.text.TextUtils;
 
 import java.io.File;
 
@@ -47,7 +48,7 @@
      * 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;