changeset 22310:1d60440b03a8

Removing useless throws
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Thu, 15 Oct 2015 10:01:44 +0200
parents 78ebf3cda0b5
children 3f2737e9e4e1
files truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/vm/EngineAsynchTest.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/vm/EngineAsynchTest.java	Thu Oct 15 09:42:50 2015 +0200
+++ b/truffle/com.oracle.truffle.api.test/src/com/oracle/truffle/api/test/vm/EngineAsynchTest.java	Thu Oct 15 10:01:44 2015 +0200
@@ -33,7 +33,7 @@
     PolyglotEngine tvm;
 
     @Before
-    public void initInDifferentThread() throws InterruptedException {
+    public void initEngine() {
         tvm = PolyglotEngine.buildNew().executor(Executors.newSingleThreadExecutor()).build();
     }