Empty import list placement and comment binding (test data fixed)

This commit is contained in:
Roman Shevchenko
2010-08-09 17:36:47 +04:00
parent 88b087a894
commit 9dd2505489
20 changed files with 19 additions and 39 deletions

View File

@@ -1,7 +1,6 @@
// "Replace Implements with Static Import" "true"
import static I.FOO;
// "Replace Implements with Static Import" "true"
public class X {
void foo() {
System.out.println(FOO);

View File

@@ -1,7 +1,6 @@
// "Replace Implements with Static Import" "true"
import static In.FOO;
// "Replace Implements with Static Import" "true"
interface In {
int FOO = 0;
}

View File

@@ -1,7 +1,6 @@
// "Replace Implements with Static Import" "true"
import static In.FOO;
// "Replace Implements with Static Import" "true"
interface In {
int FOO = 0;
}

View File

@@ -1,7 +1,6 @@
// "Replace Implements with Static Import" "true"
import static In.FOO;
// "Replace Implements with Static Import" "true"
interface In {
int FOO = 0;
}

View File

@@ -1,7 +1,6 @@
// "Replace Implements with Static Import" "true"
import static I.*;
// "Replace Implements with Static Import" "true"
public class X {
void foo() {
System.out.println(FOO);

View File

@@ -1,8 +1,7 @@
// "Replace Implements with Static Import" "true"
import static I.FOO;
import static I1.BAZZ;
// "Replace Implements with Static Import" "true"
public class X {
void bar() {
System.out.println(FOO);

View File

@@ -1,7 +1,6 @@
// "Replace Implements with Static Import" "true"
import static I1.BAZZ;
// "Replace Implements with Static Import" "true"
public class X implements I {
void bar() {
System.out.println(FOO);

View File

@@ -1,8 +1,7 @@
// "Replace Implements with Static Import" "true"
import static I1.BAZZ;
import static II.FOO;
// "Replace Implements with Static Import" "true"
public class X {
void bar() {
System.out.println(FOO);

View File

@@ -1,7 +1,6 @@
// "Replace Implements with Static Import" "true"
import static In.FOO;
// "Replace Implements with Static Import" "true"
interface In {
int FOO = 0;
}

View File

@@ -1,5 +1,4 @@
// "Replace Implements with Static Import" "true"
interface I<caret>n {
int FOO = 0;
}