use mockJdk18 by default in LightCodeInsightTestCase; remove dependency on swing/net classes in some tests

This commit is contained in:
Alexey Kudravtsev
2016-07-20 15:40:52 +03:00
parent 6b15812a4e
commit db48c64473
68 changed files with 359 additions and 210 deletions

View File

@@ -1,7 +1,5 @@
// final Fields initialization
import java.io.*;
import java.net.*;
import java.awt.event.*;
class a {
/**
@@ -87,8 +85,8 @@ class Test {
}
private final String text;
public Test() {
new ActionListener() {
public void actionPerformed(ActionEvent e) {
new Runnable() {
public void run() {
doSomething(text);////
}
};