The answer, as everyone has pointed out, is pretty much "that's how blocks are defined".
There are some proposals to make the code prettier. See ARM
try (FileReader in = makeReader(), FileWriter out = makeWriter()) {
... // Perform action transactionally
code using in and out
} catch(IOException e) {
// ...
}
Closures are supposed to address this as well.
with(FileReader in : makeReader()) with(FileWriter out : makeWriter()) {
// code using in and out
}
