Nullability fixed for a JS DOM stub

This commit is contained in:
Andrey Breslav
2014-02-25 15:11:51 +04:00
parent 1c02002e02
commit da83154454
+1 -1
View File
@@ -11,5 +11,5 @@ import org.w3c.dom.views.*
*/
public trait EventListener {
public fun handleEvent(arg1: Event?): Unit
public fun handleEvent(arg1: Event): Unit
}