canonicalize test data formatting for inline local variable

This commit is contained in:
peter
2016-12-02 08:17:01 +01:00
parent 9da29c07e4
commit 2d78283eee
2 changed files with 16 additions and 16 deletions

View File

@@ -1,15 +1,15 @@
import java.io.*;
class Test {
private static InputStream getInputUnchecked(InputStream inputSupplier) throws IOException {
InputStream in;
try {
in = null;
private static InputStream getInputUnchecked(InputStream inputSupplier) throws IOException {
InputStream in;
try {
in = null;
}
catch (IOException e) {
throw new IOException();
}
return i<caret>n;
}
catch (IOException e) {
throw new IOException();
}
return i<caret>n;
}
}

View File

@@ -1,13 +1,13 @@
import java.io.*;
class Test {
private static InputStream getInputUnchecked(InputStream inputSupplier) throws IOException {
try {
}
catch (IOException e) {
throw new IOException();
private static InputStream getInputUnchecked(InputStream inputSupplier) throws IOException {
try {
}
catch (IOException e) {
throw new IOException();
}
return null;
}
return null;
}
}