Ignore:
Timestamp:
2018-02-26T20:03:44+01:00 (8 years ago)
Author:
Don-vip
Message:

fix #15992 - fix codestyle issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r13467 r13468  
    869869            }
    870870            String msg = all != null ? all.toString() : null;
    871             if (!p.waitFor(timeout, unit)) {
    872                 throw new ExecutionException(msg, null);
    873             }
    874             if (p.exitValue() != 0) {
     871            if (!p.waitFor(timeout, unit) || p.exitValue() != 0) {
    875872                throw new ExecutionException(msg, null);
    876873            }
Note: See TracChangeset for help on using the changeset viewer.