[Title] emulator-manager : change checking emulator process
authorjihye1128.kim <jihye1128.kim@samsung.com>
Mon, 22 Apr 2013 02:35:11 +0000 (11:35 +0900)
committerjihye1128.kim <jihye1128.kim@samsung.com>
Mon, 22 Apr 2013 05:31:20 +0000 (14:31 +0900)
[Desc.] change checking emulator process in Windows
[Issue] N_SE-35561

Change-Id: I0d751fb1f2030ff5e406cc10f2fe82a20114a5d5

package/changelog
package/pkginfo.manifest
src/org/tizen/emulator/manager/vms/VMWorker.java

index 9c86716..be95050 100644 (file)
@@ -1,3 +1,7 @@
+* 2.1.5
+- change checking emulator process routine (in Windows)
+== jihye kim <jihye1128.kim@samsung.com> 2013-04-22
+
 * 2.1.4
 - change emulator manager main ux
 == jihye kim <jihye1128.kim@samsung.com> 2013-04-19
index 3be9bcf..013dff6 100644 (file)
@@ -1,5 +1,5 @@
 Source: emulator-manager
-Version: 2.1.4
+Version: 2.1.5
 Maintainer: Yeong-Kyoon Lee<yeongkyoon.lee@samsung.com>
 
 Package: emulator-manager
index 317bf76..82534dc 100644 (file)
@@ -325,7 +325,7 @@ public class VMWorker {
                                while ((line = stdOut.readLine()) != null) {
                                        String[] titleName = line.split(",");
                                        // "split[split.length - 1]" is window title.
-                                       if(titleName[titleName.length - 1].startsWith("\"" + prop.getName()+ ":261")) {
+                                       if(titleName[titleName.length - 1].contains(prop.getName()+ ":261")) {
                                                //logger.log(Level.INFO, "contains " + titleName[titleName.length - 1]);
                                                logger.log(Level.INFO, "emulator instance with the same name is running now (" + titleName[titleName.length - 1] + ")");
                                                result = true;