From 043cf4b2180adb8a3698ac03e8b766e8fcdd3168 Mon Sep 17 00:00:00 2001 From: "minkee.lee" Date: Tue, 22 Dec 2015 16:39:23 +0900 Subject: [PATCH] export-image: remove additional cancel popup If user cancels job, additional popup that shows message such as "User canceled" is unnecessary. Change-Id: Ic7aa0f367aaa25229aa6aec395b254cd60fc3264 Signed-off-by: minkee.lee --- resource/strings/uimessages.properties | 1 - src/org/tizen/emulator/manager/ui/MenuHandling.java | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/resource/strings/uimessages.properties b/resource/strings/uimessages.properties index 2194136..8b56fa7 100644 --- a/resource/strings/uimessages.properties +++ b/resource/strings/uimessages.properties @@ -47,7 +47,6 @@ MenuHandling.ExportDiglogTitle.0=Export 'Base Image' As MenuHandling.ExportAsCompressDialogTitle=Create new base image MenuHandling.ExportAsCompressDialogBody.0=Do you want to create compressed image? MenuHandling.ExportAsCompressDialogBody.1=(It takes longer time but size is smaller) -MenuHandling.ExportAsUserCancel=User canceled. MenuHandling.ResetError.0=Not allowed to reset active VMs. MenuHandling.ResetError.1=] is running now... MenuHandling.ResetInfo.0=This VM will be formatted. diff --git a/src/org/tizen/emulator/manager/ui/MenuHandling.java b/src/org/tizen/emulator/manager/ui/MenuHandling.java index 18fd016..1a29f91 100644 --- a/src/org/tizen/emulator/manager/ui/MenuHandling.java +++ b/src/org/tizen/emulator/manager/ui/MenuHandling.java @@ -143,8 +143,8 @@ public class MenuHandling { useCompress = false; } else { - throw new VMWorkerException( - Messages.getString("MenuHandling.ExportAsUserCancel")); + // cancel + return false; } -- 2.7.4