Ignore:
Timestamp:
2013-05-09T09:37:57+02:00 (11 years ago)
Author:
akks
Message:

JOSM/CommandLine: added timeout commandline.timeout ms

Location:
applications/editors/josm/plugins/CommandLine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/CommandLine/build.xml

    r29505 r29566  
    22<project name="CommandLine" default="dist" basedir=".">
    33    <!-- 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"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    66    <property name="plugin.main.version" value="5874"/>
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java

    r29505 r29566  
    584584        synchronized (syncObj) {
    585585            try {
    586                 syncObj.wait(10000);
     586                syncObj.wait(Main.pref.getInteger("commandline.timeout", 20000));
    587587            } catch (InterruptedException e) {
    588588            }
Note: See TracChangeset for help on using the changeset viewer.