File tree Expand file tree Collapse file tree
objectbox-kotlin/src/main/kotlin/io/objectbox/kotlin Expand file tree Collapse file tree 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)
2929inline fun <T : Any > BoxStore.boxFor (clazz : KClass <T >): Box <T > = boxFor(clazz.java)
3030
3131/* * 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 >
3333 = `in `(property, values)
3434
3535/* * 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 >
3737 = `in `(property, values)
3838
3939/* *
You can’t perform that action at this time.
0 commit comments