fix tests
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
package foo;
|
package foo;
|
||||||
|
|
||||||
class A {
|
class A {
|
||||||
int getAnswer(String[] array, int number, Object value) {
|
public int getAnswer(String[] array, int number, Object value) {
|
||||||
return 42;
|
return 42;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import javax.swing.SwingUtilities
|
|||||||
fun main(args : Array<String>) {
|
fun main(args : Array<String>) {
|
||||||
SwingUtilities.invokeLater(object : Runnable {
|
SwingUtilities.invokeLater(object : Runnable {
|
||||||
|
|
||||||
<caret> override fun run() {
|
<caret> public override fun run() {
|
||||||
throw UnsupportedOperationException()
|
throw UnsupportedOperationException()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user