We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e7ad6 commit 4363be5Copy full SHA for 4363be5
core/src/main/java/com/alamkanak/weekview/CalendarExtensions.kt
@@ -61,8 +61,6 @@ internal val Calendar.year: Int
61
62
internal fun Calendar.isEqual(other: Calendar) = timeInMillis == other.timeInMillis
63
64
-internal fun Calendar.isNotEqual(other: Calendar) = isEqual(other).not()
65
-
66
internal operator fun Calendar.plus(days: Days): Calendar {
67
return copy().apply {
68
add(Calendar.DATE, days.days)
core/src/main/java/com/alamkanak/weekview/WeekViewItem.kt
@@ -19,7 +19,7 @@ data class WeekViewItem(
19
val timing: Timing,
20
val style: Style = Style(),
21
val configuration: Configuration = Configuration(),
22
- val data: Any? = null,
+ val data: Any,
23
) {
24
25
/**
0 commit comments