Fix J2K ObjectLiteral.testMyFrame by updating incorrect testData

This commit is contained in:
Simon Ogorodnik
2018-02-08 18:14:27 +03:00
parent 126afbb8ac
commit 366f630236
2 changed files with 5 additions and 2 deletions
+3 -1
View File
@@ -8,7 +8,9 @@ interface WindowListener {
interface EmptyWindowListener {
}
open class EmptyWindowAdapter : EmptyWindowListener {}
class EmptyWindowAdapter implements EmptyWindowListener {
}
class WindowAdapter implements WindowListener {
public void windowClosing () {
+2 -1
View File
@@ -5,7 +5,8 @@ internal interface WindowListener {
}
internal interface EmptyWindowListener
internal open class EmptyWindowAdapter
internal open class EmptyWindowAdapter : EmptyWindowListener
internal open class WindowAdapter : WindowListener {
override fun windowClosing() {}