[COMM] remove the wait timeout of setting dialog when trace is started from IDE
authorgreatim <jaewon81.lim@samsung.com>
Wed, 23 Sep 2015 09:42:58 +0000 (18:42 +0900)
committergreatim <jaewon81.lim@samsung.com>
Wed, 23 Sep 2015 09:42:58 +0000 (18:42 +0900)
remove the wait timeout of setting dialog when trace is started from IDE

Change-Id: I0ec5eff2486a9542ea5056e0e730ee160502c07e
Signed-off-by: greatim <jaewon81.lim@samsung.com>
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/communicator/IDECommunicator.java

index a1cca18..61eea1e 100644 (file)
@@ -78,6 +78,7 @@ public class IDECommunicator implements Runnable {
        private static final String IDE_DA_COMMUNICATION_TYPE_1_STOP = "stop";//$NON-NLS-1$
 
        private final String IDE_DA_COMMUNICATION_PROJECT_TYPE_NATIVE = "native";
+       @SuppressWarnings("unused")
        private final String IDE_DA_COMMUNICATION_PROJECT_TYPE_WEB = "web";
        
        // private final int MSG_INDEX_CMD = 0;
@@ -108,7 +109,6 @@ public class IDECommunicator implements Runnable {
        private static Socket nativeIdeSocket = null;
        private static ArrayList<Socket> ideClientSocketArray = new ArrayList<Socket>();
        private int serverPort = 0;
-       private long configurationWaitingTimeMs = 60000;
 
        public void run() {
                daServerSocket = setServePort(); // Server Bind
@@ -383,7 +383,7 @@ public class IDECommunicator implements Runnable {
                        Logger.debug("Start -AutoRun Waiting...");
                        synchronized (getWaitingWelcomeDlg()) {
                                try {
-                                       getWaitingWelcomeDlg().wait((long) configurationWaitingTimeMs);
+                                       getWaitingWelcomeDlg().wait();
                                } catch (InterruptedException e) {
                                        Logger.exception(e);
                                }