Use JDK annotations downloaded from a KAnnotator build

This commit is contained in:
Andrey Breslav
2014-02-14 21:17:03 +04:00
parent 48df541e0f
commit ff762a4467
180 changed files with 31 additions and 35784 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ fun eventHandler(handler: (Event) -> Unit): EventListener {
}
private class EventListenerHandler(val handler: (Event) -> Unit): EventListener {
public override fun handleEvent(e: Event?) {
public override fun handleEvent(e: Event) {
if (e != null) {
handler(e)
}