am c99e6ee2: am c9aa32e9: Merge "Fix dumpPowerState method"

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

View File

@@ -1157,6 +1157,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 " : "");
}