File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
objectbox-kotlin/src/main/kotlin/io/objectbox/kotlin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ inline fun <reified T> BoxStore.boxFor(): Box<T> = boxFor(T::class.java)
29
29
inline fun <T : Any > BoxStore.boxFor (clazz : KClass <T >): Box <T > = boxFor(clazz.java)
30
30
31
31
/* * An alias for the "in" method, which is a reserved keyword in Kotlin. */
32
- inline fun <reified T > QueryBuilder<T>.inValues (property : Property , values : LongArray ): QueryBuilder <T >?
32
+ inline fun <reified T > QueryBuilder<T>.inValues (property : Property , values : LongArray ): QueryBuilder <T >
33
33
= `in `(property, values)
34
34
35
35
/* * An alias for the "in" method, which is a reserved keyword in Kotlin. */
36
- inline fun <reified T > QueryBuilder<T>.inValues (property : Property , values : IntArray ): QueryBuilder <T >?
36
+ inline fun <reified T > QueryBuilder<T>.inValues (property : Property , values : IntArray ): QueryBuilder <T >
37
37
= `in `(property, values)
38
38
39
39
/* *
You can’t perform that action at this time.
0 commit comments