summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJinhyung Choi <jinh0.choi@samsung.com>2016-04-24 17:13:21 +0900
committerJinhyung Choi <jinh0.choi@samsung.com>2016-04-24 17:13:21 +0900
commit61e975e86cc588496194eb1c4bc0fe7fe3b93528 (patch)
treed25f37a47327b89dea88069043f0989a3a95f46b
parent10222f24daeb88f058e643de9b986ef36efa8615 (diff)
downloademulator-control-panel-spin.tar.gz
emulator-control-panel-spin.tar.bz2
emulator-control-panel-spin.zip
path: fix bug of wrong path for auto completionspin
Change-Id: I935241214899bc7b4d0dad19dc4cfcaf5dec7510 Signed-off-by: Jinhyung Choi <jinh0.choi@samsung.com>
-rw-r--r--ECP-CLI/src/org/tizen/cli/TizenEmulatorAutoComplete.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ECP-CLI/src/org/tizen/cli/TizenEmulatorAutoComplete.java b/ECP-CLI/src/org/tizen/cli/TizenEmulatorAutoComplete.java
index 542627dd..8ee2cbc1 100644
--- a/ECP-CLI/src/org/tizen/cli/TizenEmulatorAutoComplete.java
+++ b/ECP-CLI/src/org/tizen/cli/TizenEmulatorAutoComplete.java
@@ -52,7 +52,7 @@ public class TizenEmulatorAutoComplete {
private static void initializeECPInfo(String name, int port)
throws IOException, JAXBException {
VMInfo.getInstance().initialize(name, port);
- String profile = VMInfo.getInstance().getPlatformProfile();
+ String profile = VMInfo.getInstance().getProfile();
if (profile != null && !profile.isEmpty()) {
String ecpInfoPath = VMInfo.getInstance().getPluginPath(profile)
+ File.separator + PLUGIN_XML;