[orx-file-watcher, orx-property-watchers] Change type of first argument of getValue from Any to Any?

This commit is contained in:
Edwin Jakobs
2023-03-18 20:59:51 +01:00
parent 23247e5044
commit 31e9003cc6
2 changed files with 5 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ class FileWatcherDelegate<T>(
}
}
operator fun getValue(any: Any, property: KProperty<*>): T {
operator fun getValue(any: Any?, property: KProperty<*>): T {
return value
}
}