Changeset 13468 in josm for trunk/src/org/openstreetmap/josm/tools/Utils.java
- Timestamp:
- 2018-02-26T20:03:44+01:00 (8 years ago)
- File:
-
- 1 edited
-
trunk/src/org/openstreetmap/josm/tools/Utils.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r13467 r13468 869 869 } 870 870 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) { 875 872 throw new ExecutionException(msg, null); 876 873 }
Note:
See TracChangeset
for help on using the changeset viewer.
