am c9aa32e9: Merge "Fix dumpPowerState method"

* commit 'c9aa32e93f39f84033e4ac812efec662a1f824ac':
  Fix dumpPowerState method
This commit is contained in:
Dianne Hackborn
2012-06-08 18:51:11 -07:00
committed by Android Git Automerger

View File

@ -1103,6 +1103,8 @@ public class PowerManagerService extends IPowerManager.Stub
? "SCREEN_BRIGHT_BIT " : "")
+ (((state & SCREEN_ON_BIT) != 0)
? "SCREEN_ON_BIT " : "")
+ (((state & BUTTON_BRIGHT_BIT) != 0)
? "BUTTON_BRIGHT_BIT " : "")
+ (((state & BATTERY_LOW_BIT) != 0)
? "BATTERY_LOW_BIT " : "");
}