fix CTM textures

bump version to 2.0.10
This commit is contained in:
octarine-noise
2016-04-21 19:55:06 +02:00
parent 66ed1c098f
commit 626bc69dad
4 changed files with 7 additions and 4 deletions

View File

@@ -125,7 +125,7 @@ class MethodRef(val parentClass: ClassRef,
}
/** Invoke this method using reflection. */
fun invoke(receiver: Any, vararg args: Any) = element?.invoke(receiver, *args)
fun invoke(receiver: Any, vararg args: Any?) = element?.invoke(receiver, *args)
/** Invoke this static method using reflection. */
fun invokeStatic(vararg args: Any) = element?.invoke(null, *args)