summaryrefslogtreecommitdiff
path: root/src/com/android/calendar/DayFragment.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/calendar/DayFragment.kt')
-rw-r--r--src/com/android/calendar/DayFragment.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/calendar/DayFragment.kt b/src/com/android/calendar/DayFragment.kt
index 39e92f5b..36413cde 100644
--- a/src/com/android/calendar/DayFragment.kt
+++ b/src/com/android/calendar/DayFragment.kt
@@ -154,7 +154,7 @@ class DayFragment : Fragment, CalendarController.EventHandler, ViewFactory {
val diff: Int = currentView?.compareToVisibleTimeRange(goToTime as Time) as Int
if (diff == 0) {
// In visible range. No need to switch view
- currentView?.setSelected(goToTime, ignoreTime, animateToday)
+ currentView.setSelected(goToTime, ignoreTime, animateToday)
} else {
// Figure out which way to animate
if (diff > 0) {
@@ -214,8 +214,8 @@ class DayFragment : Fragment, CalendarController.EventHandler, ViewFactory {
// TODO support a range of time
// TODO support event_id
// TODO support select message
- goTo(msg?.selectedTime, msg?.extraLong and CalendarController.EXTRA_GOTO_DATE != 0L,
- msg?.extraLong and CalendarController.EXTRA_GOTO_TODAY != 0L)
+ goTo(msg.selectedTime, msg.extraLong and CalendarController.EXTRA_GOTO_DATE != 0L,
+ msg.extraLong and CalendarController.EXTRA_GOTO_TODAY != 0L)
} else if (msg?.eventType == CalendarController.EventType.EVENTS_CHANGED) {
eventsChanged()
}