show/hide this revision's text 3 deleted 10 characters in body

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
}
show/hide this revision's text 2 named the links

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 http://docs.google.com/View?docid=dffxznxr_1nmsqkz&pli=1ARM

 try (FileReader in = makeReader(), FileWriter out = makeWriter()) {
       ... // Perform action transactionally
 } catch(IOException e) {
       ...
 }

Closures are supposed to address this as well.http://www.javac.info

with(FileReader in : makeReader()) with(FileWriter out : makeWriter()) {
    // code using in and out
}
show/hide this revision's text 1

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 http://docs.google.com/View?docid=dffxznxr_1nmsqkz&pli=1

 try (FileReader in = makeReader(), FileWriter out = makeWriter()) {
       ... // Perform action transactionally
 } catch(IOException e) {
       ...
 }

Closures are supposed to address this as well. http://www.javac.info

with(FileReader in : makeReader()) with(FileWriter out : makeWriter()) {
    // code using in and out
}