sentence capitalization

This commit is contained in:
Dmitry Avdeev
2014-12-06 11:49:04 +03:00
parent 25275abdc8
commit 10d9a87226
27 changed files with 29 additions and 29 deletions
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class a {
void g() throws Exception {
}
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class a {
void g() throws Exception {
}
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class MyException1 extends Exception {}
class MyException2 extends Exception {}
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
import java.io.IOException;
class Test {
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class Test {
static class E1 extends Exception { }
static class E2 extends Exception { }
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class Test {
static class E1 extends Exception { }
static class E2 extends Exception { }
@@ -1,7 +1,7 @@
import java.io.FileNotFoundException;
import java.io.IOException;
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class CatchExceptions {
void foo() throws java.io.IOException, java.io.FileNotFoundException {
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class a {
void g() throws Exception {
}
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "false"
// "Add 'catch' clause(s)" "false"
// should not try to add catch clauses across method boundaries
class s {
int f() throws Exception {
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class a {
void g() throws Exception {
}
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class MyException1 extends Exception {}
class MyException2 extends Exception {}
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
import java.io.IOException;
class Test {
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class Test {
static class E1 extends Exception { }
static class E2 extends Exception { }
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class Test {
static class E1 extends Exception { }
static class E2 extends Exception { }
@@ -1,4 +1,4 @@
// "Add Catch Clause(s)" "true"
// "Add 'catch' clause(s)" "true"
class CatchExceptions {
void foo() throws java.io.IOException, java.io.FileNotFoundException {
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
class C {
static class E1 extends Exception { }
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
class C {
static class E1 extends Exception { }
static class E2 extends Exception { }
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
class C {
interface I {
void a() throws InterruptedException;
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
class C {
interface I {
void a() throws InterruptedException;
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
import java.io.*;
class C {
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
class C {
static class E1 extends Exception { }
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
class C {
static class E1 extends Exception { }
static class E2 extends Exception { }
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "false"
// "Add exception to method signature" "false"
class C {
public static void main(String[] args) throws InterruptedException {
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
class C {
interface I {
void a();
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
class C {
interface I {
void a();
@@ -1,4 +1,4 @@
// "Add Exception to Method Signature" "true"
// "Add exception to method signature" "true"
import java.io.*;
class C {