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:47:18 +03:00
parent 6b15812a4e
commit db48c64473
68 changed files with 359 additions and 210 deletions
@@ -4,8 +4,8 @@ class Test {
System.out.println(s1);
}
private String newMethod(String x, String s) {
System.out.println(x);
return s;
private String newMethod(String s, String s2) {
System.out.println(s2);
return s2;
}
}