Changeset 30722 in osm for applications/editors/josm/plugins/surveyor/src
- Timestamp:
- 2014-10-15T00:24:51+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SystemExecuteAction.java
r30646 r30722 38 38 39 39 while ((line = br.readLine()) != null) { 40 System.out.println(getClass().getSimpleName() + ": " + line);40 Main.info(getClass().getSimpleName() + ": " + line); 41 41 } 42 42 43 System.out.println(getClass().getSimpleName() + "Program terminated!");44 } catch ( Throwablet) {43 Main.info(getClass().getSimpleName() + "Program terminated!"); 44 } catch (Exception t) { 45 45 Main.error(t); 46 46 }
Note:
See TracChangeset
for help on using the changeset viewer.