mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
use mockJdk18 by default in LightCodeInsightTestCase; remove dependency on swing/net classes in some tests
This commit is contained in:
+5
-2
@@ -1,4 +1,3 @@
|
||||
import java.awt.event.*;
|
||||
|
||||
class A {
|
||||
private ActionListener b = new Inner();
|
||||
@@ -7,7 +6,11 @@ class A {
|
||||
}
|
||||
|
||||
private class <caret>Inner extends MyActionListener implements ActionListener {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
public void actionPerformed(int e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
interface ActionListener {
|
||||
public void actionPerformed(int e);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user