[Title] modified getSdbPath() for mac
authorgiwoong.kim <giwoong.kim@samsung.com>
Wed, 18 Jul 2012 13:38:03 +0000 (22:38 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Wed, 18 Jul 2012 13:38:03 +0000 (22:38 +0900)
[Type] bugfix
[Module] Emulator / menu
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

tizen/src/skin/client/src/org/tizen/emulator/skin/util/SkinUtil.java

index a3fe544..155fc91 100644 (file)
@@ -112,10 +112,10 @@ public class SkinUtil {
        public static String getSdbPath() {
                String sdbPath = null;
 
-               if (SkinUtil.isLinuxPlatform()) {
-                       sdbPath = "./../../sdb";
-               } else if (SkinUtil.isWindowsPlatform()) {
+               if (SkinUtil.isWindowsPlatform()) {
                        sdbPath = ".\\..\\..\\sdb.exe";
+               } else {
+                       sdbPath = "./../../sdb";
                }
 
                return sdbPath;