From: ho.namkoong Date: Thu, 5 Sep 2013 07:22:29 +0000 (+0900) Subject: [Title] fix throw bug X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d02b913032dba8907abd277a5b9438fd363b608;p=sdk%2Fide%2Fcommon-eplugin.git [Title] fix throw bug [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] Change-Id: I93d3c0bbda950b019f810743625d0787ee48d66a --- diff --git a/org.tizen.common/test/src/org/tizen/common/Shell.java b/org.tizen.common/test/src/org/tizen/common/Shell.java index fb5e4d2..ee0a07e 100644 --- a/org.tizen.common/test/src/org/tizen/common/Shell.java +++ b/org.tizen.common/test/src/org/tizen/common/Shell.java @@ -30,7 +30,6 @@ import static org.tizen.sdblib.util.ThreadUtil.trySleep; import java.io.BufferedReader; import java.io.BufferedWriter; -import java.io.IOException; import java.io.OutputStreamWriter; import java.io.StringReader; import java.lang.annotation.Annotation; @@ -159,12 +158,7 @@ implements IShell } out.append(data); out.newLine(); - try { - out.flush(); - } - catch (IOException e){ - e.printStackTrace(); - } + out.flush(); } /** (non-Javadoc)