From 2261c0e46953101ccc6ca4ed657b789930a270b7 Mon Sep 17 00:00:00 2001 From: "minkee.lee" Date: Wed, 13 Aug 2014 17:03:29 +0900 Subject: [PATCH] Bug fix: Modify setting skin value. Change-Id: I14cba483f524acfa8d930ef493c3e49aba47ebea Signed-off-by: minkee.lee --- .../org/tizen/emulator/manager/vms/VMPropertyValue.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/common-project/src/org/tizen/emulator/manager/vms/VMPropertyValue.java b/common-project/src/org/tizen/emulator/manager/vms/VMPropertyValue.java index 70eb545..6d649e3 100644 --- a/common-project/src/org/tizen/emulator/manager/vms/VMPropertyValue.java +++ b/common-project/src/org/tizen/emulator/manager/vms/VMPropertyValue.java @@ -348,14 +348,14 @@ public class VMPropertyValue implements Cloneable { skinPath = property.getConfiguration().getDevice().getDisplay().getSkinPath().getPath(); } - if (skinPath != null) { - try { - skin = new Skin(new File(skinPath)); - } catch (IOException e) { - skin = null; - EMLogger.getLogger().warning("Failed to create skin." + e.getMessage()); - } - } +// if (skinPath != null) { +// try { +// skin = new Skin(new File(skinPath)); +// } catch (IOException e) { +// skin = null; +// EMLogger.getLogger().warning("Failed to create skin." + e.getMessage()); +// } +// } keyType = 1; // TODO if (skin != null) { -- 2.7.4