From 1d02b913032dba8907abd277a5b9438fd363b608 Mon Sep 17 00:00:00 2001 From: "ho.namkoong" Date: Thu, 5 Sep 2013 16:22:29 +0900 Subject: [PATCH] [Title] fix throw bug [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] Change-Id: I93d3c0bbda950b019f810743625d0787ee48d66a --- org.tizen.common/test/src/org/tizen/common/Shell.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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) -- 2.7.4