AdaptiveBacklight: fix illegal value exception.

Change-Id: I8ea84451c8dd4be35a2d2e62547fc81a2b704dd1
tirimbino
repo Shareef Ali 10 years ago
parent a81d58b35e
commit 50c588b53f
  1. 3
      cmhw/org/cyanogenmod/hardware/AdaptiveBacklight.java

@ -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;

Loading…
Cancel
Save