e189d46 clang-format: [Java] Support try blocks with resources.

Authored and Committed by Daniel Jasper 9 years ago
    clang-format: [Java] Support try blocks with resources.
    
    Before:
      try
        (SomeResource rs = someFunction()) {
          Something();
        }
    
    After:
      try (SomeResource rs = someFunction()) {
        Something();
      }
    
    llvm-svn: 225973