Ignore:
Timestamp:
2011-03-06T12:27:40+01:00 (13 years ago)
Author:
framm
Message:

delay activation of RemoteControl listen socket; closes #6066

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r3815 r3959  
    215215        monitor.worked(1);
    216216
    217         if (RemoteControl.PROP_REMOTECONTROL_ENABLED.get()) {
    218             RemoteControl.start();
    219         }
    220 
    221217        monitor.indeterminateSubTask(tr("Creating main GUI"));
    222218        JFrame mainFrame = new JFrame(tr("Java OpenStreetMap Editor"));
     
    274270
    275271                main.postConstructorProcessCmdLine(args);
     272
    276273            }
    277274        });
     275
     276        if (RemoteControl.PROP_REMOTECONTROL_ENABLED.get()) {
     277            RemoteControl.start();
     278        }
     279
    278280    }
    279281
Note: See TracChangeset for help on using the changeset viewer.