Changeset 29566 in osm for applications
- Timestamp:
- 2013-05-09T09:37:57+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/CommandLine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/build.xml
r29505 r29566 2 2 <project name="CommandLine" default="dist" basedir="."> 3 3 <!-- enter the SVN commit message --> 4 <property name="commit.message" value=" Moar bugfixes"/>4 <property name="commit.message" value="JOSM/CommandLine: added timeout commandline.timeout ms"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 6 <property name="plugin.main.version" value="5874"/> -
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r29505 r29566 584 584 synchronized (syncObj) { 585 585 try { 586 syncObj.wait( 10000);586 syncObj.wait(Main.pref.getInteger("commandline.timeout", 20000)); 587 587 } catch (InterruptedException e) { 588 588 }
Note:
See TracChangeset
for help on using the changeset viewer.