summaryrefslogtreecommitdiff
path: root/src/com/android/calendar/CalendarController.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/calendar/CalendarController.kt')
-rw-r--r--src/com/android/calendar/CalendarController.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/calendar/CalendarController.kt b/src/com/android/calendar/CalendarController.kt
index 16ee8fdd..41984bf7 100644
--- a/src/com/android/calendar/CalendarController.kt
+++ b/src/com/android/calendar/CalendarController.kt
@@ -440,7 +440,7 @@ class CalendarController private constructor(context: Context?) {
// Set mTime if selectedTime is set
val temp1 = event.selectedTime
- if (temp1 != null && temp1?.toMillis(false) != 0L) {
+ if (temp1 != null && temp1.toMillis(false) != 0L) {
mTime?.set(event.selectedTime)
} else {
if (startMillis != 0L) {
@@ -450,7 +450,7 @@ class CalendarController private constructor(context: Context?) {
val temp2 = event.endTime
if (mtimeMillis < startMillis ||
temp2 != null && mtimeMillis > temp2.toMillis(false)) {
- mTime?.set(event.startTime)
+ mTime.set(event.startTime)
}
}
event.selectedTime = mTime