comparison graal/com.oracle.truffle.api.dsl.test/src/com/oracle/truffle/api/dsl/test/ExecuteMethodTest.java @ 18838:ae827362559d

fixed JDT compilation warning
author Doug Simon <doug.simon@oracle.com>
date Mon, 12 Jan 2015 12:04:22 +0100
parents c0fb70634640
children f4792a544170
comparison
equal deleted inserted replaced
18837:9964fe22120d 18838:ae827362559d
195 } 195 }
196 } 196 }
197 197
198 @TypeSystemReference(ExecuteMethodTypes.class) 198 @TypeSystemReference(ExecuteMethodTypes.class)
199 @NodeChild(value = "a", type = ChildNoFrame.class) 199 @NodeChild(value = "a", type = ChildNoFrame.class)
200 @ExpectError("Multiple accessible and overridable generic execute methods found [executeObject(), executeVoid1(), executeVoid2()]. Remove all but one or mark all but one as final.") 200 @ExpectError("Multiple accessible and overridable generic execute methods found [executeVoid1(), executeVoid2()]. Remove all but one or mark all but one as final.")
201 abstract static class ExecuteThisVoid3 extends Node { 201 abstract static class ExecuteThisVoid3 extends Node {
202 202
203 // allow only one execute void 203 // allow only one execute void
204 abstract void executeVoid1(); 204 abstract void executeVoid1();
205 205