diff options
author | Harry Hyeongseok Heo <hyeongseok.heo@samsung.com> | 2014-05-12 18:04:47 -0700 |
---|---|---|
committer | Gerrit Code Review <gerrit@review.vlan103.tizen.org> | 2014-05-12 18:04:47 -0700 |
commit | 5c671d1116ae168c545736caf2ac8d59170c1be8 (patch) | |
tree | b2b428db2a624081a171e8de79ef78b824e02394 | |
parent | fcb65d71a6f055edbafbec3fcc685c5404c4ca06 (diff) | |
parent | a5ff43518746c36221f1179539fe0e93bacf7fcc (diff) | |
download | common-eplugin-5c671d1116ae168c545736caf2ac8d59170c1be8.tar.gz common-eplugin-5c671d1116ae168c545736caf2ac8d59170c1be8.tar.bz2 common-eplugin-5c671d1116ae168c545736caf2ac8d59170c1be8.zip |
Merge "MISC: Fixed error messages." into tizen
-rwxr-xr-x | org.tizen.common/src/org/tizen/common/CommonPlugin.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.tizen.common/src/org/tizen/common/CommonPlugin.java b/org.tizen.common/src/org/tizen/common/CommonPlugin.java index 9127eb2e0..1a3ced4e3 100755 --- a/org.tizen.common/src/org/tizen/common/CommonPlugin.java +++ b/org.tizen.common/src/org/tizen/common/CommonPlugin.java @@ -182,7 +182,7 @@ public class CommonPlugin extends AbstractUIPlugin { SmartDevelopmentBridge bridge = SmartDevelopmentBridge.createBridge(sdbPath, false); bridge.waitforStart( 5000 ); if ( !bridge.getStarted() ) { - DialogUtil.openErrorDialog( "Failed to start sdb. Read sdb log in ${tizen_sdk}/tools for details." ); + DialogUtil.openErrorDialog( "Failed to start sdb"); // Just to proceed for using IDE without sdb bridge.stopBridge(); } |