profile: Separated private internal method and public method
authorSeokYeon Hwang <syeon.hwang@samsung.com>
Mon, 22 Jun 2015 02:53:42 +0000 (11:53 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Mon, 22 Jun 2015 04:03:03 +0000 (13:03 +0900)
Change-Id: I9544c2c3b74e46d502dadebea46bd3e47e2b123f

src/org/tizen/emulator/manager/platform/ProfileList.java

index 11a5225..015cf47 100644 (file)
@@ -82,6 +82,10 @@ public class ProfileList {
                return pluginList;
        }
 
+       public static void settingVMPropertyList() {
+               settingVMPropertyListInternal();
+       }
+
        private static void initProfileList() {
                File platforms = new File(FilePathResources.getPlatformsPath());
                if (!platforms.exists() || !platforms.isDirectory()) {
@@ -125,7 +129,7 @@ public class ProfileList {
                checkingBaseImageBinaryVersion();
 
                // make emulator list
-               settingVMPropertyList();
+               settingVMPropertyListInternal();
 
                // remove invalid last-created property file.
                checkLastCreatedPropertyFile();
@@ -202,7 +206,7 @@ public class ProfileList {
                }
        }
 
-       public static void settingVMPropertyList() {
+       private static void settingVMPropertyListInternal() {
                EmulatorVMList vms = EmulatorVMList.getInstance();
                vms.refreshProperties();