sentence capitalization

This commit is contained in:
Dmitry Avdeev
2014-12-06 11:38:01 +03:00
parent 1d566347e1
commit 25275abdc8
51 changed files with 75 additions and 75 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,4 +1,4 @@
// "Replace Implements with Static Import" "false"
// "Replace implements with static import" "false"
public class X implements <caret>I {
void foo() {
System.out.println(FOO);

View File

@@ -1,4 +1,4 @@
// "Replace Implements with Static Import" "false"
// "Replace implements with static import" "false"
public class X implements <caret>I {
void bar() {}
}

View File

@@ -1,4 +1,4 @@
// "Replace Implements with Static Import" "false"
// "Replace implements with static import" "false"
public class X implements <caret>I {
void bar() {
System.out.println(FOO);

View File

@@ -1,4 +1,4 @@
// "Replace Implements with Static Import" "true"
// "Replace implements with static import" "true"
public class X implements <caret>I {
void bar() {
System.out.println(FOO);

View File

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

View File

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

View File

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