canonicalize test data formatting for inline local variable

This commit is contained in:
peter
2016-12-02 08:17:33 +01:00
parent 9da29c07e4
commit 2d78283eee
2 changed files with 16 additions and 16 deletions
@@ -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;
}
}