mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fixed tests for Linux
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
class T {
|
||||
Object myObject;
|
||||
|
||||
void test() {
|
||||
new MyRunnable(myObject).run();
|
||||
}
|
||||
|
||||
private static class <caret>MyRunnable implements Runnable {
|
||||
private Object myObject;
|
||||
|
||||
public MyRunnable(Object object) {
|
||||
this.myObject = object;
|
||||
}
|
||||
|
||||
public void run() {
|
||||
myObject.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user