diff options
| author | Mustaavalkosta <niko.hyrynsalmi@gmail.com> | 2013-06-08 09:57:45 +0000 |
|---|---|---|
| committer | Mustaavalkosta <niko.hyrynsalmi@gmail.com> | 2013-06-08 09:57:45 +0000 |
| commit | ecf9a9896e925e65565917e4639c508fc5303132 (patch) | |
| tree | 93d60f373a47128e4971f1ace9e387a4b01015d4 /services/java/com/android/server/NotificationManagerService.java | |
| parent | be47cb7e97de993c76030e57883d8afcfb769a40 (diff) | |
| download | frameworks_base-ecf9a9896e925e65565917e4639c508fc5303132.zip frameworks_base-ecf9a9896e925e65565917e4639c508fc5303132.tar.gz frameworks_base-ecf9a9896e925e65565917e4639c508fc5303132.tar.bz2 | |
NotificationManagerService: fix typo on led off time variable
Change-Id: Iade96474c26dbeb3a5a671170f563220562d9b3c
Diffstat (limited to 'services/java/com/android/server/NotificationManagerService.java')
| -rw-r--r-- | services/java/com/android/server/NotificationManagerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/NotificationManagerService.java b/services/java/com/android/server/NotificationManagerService.java index 1f50c8f..06a8615 100644 --- a/services/java/com/android/server/NotificationManagerService.java +++ b/services/java/com/android/server/NotificationManagerService.java @@ -1602,7 +1602,7 @@ public class NotificationManagerService extends INotificationManager.Stub if (ledValues != null) { ledARGB = ledValues.color != 0 ? ledValues.color : mDefaultNotificationColor; ledOnMS = ledValues.onMS >= 0 ? ledValues.onMS : mDefaultNotificationLedOn; - ledOffMS = ledValues.offMS >= 0 ? ledValues.offMS : mDefaultNotificationLedOn; + ledOffMS = ledValues.offMS >= 0 ? ledValues.offMS : mDefaultNotificationLedOff; } else { if ((mLedNotification.notification.defaults & Notification.DEFAULT_LIGHTS) != 0) { ledARGB = mDefaultNotificationColor; |
