# HG changeset patch # User Christian Wimmer # Date 1367456761 25200 # Node ID 01a85ad09b5e1c8407f7c2f7cfd1551a15a9ca2d # Parent 2b663d5893d3c66d60cc51dd2d750e62ee222190 Add generic type to avoid Java compiler warnings diff -r 2b663d5893d3 -r 01a85ad09b5e graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/RuntimeCallTarget.java --- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/RuntimeCallTarget.java Wed May 01 13:33:07 2013 -0700 +++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/RuntimeCallTarget.java Wed May 01 18:06:01 2013 -0700 @@ -67,14 +67,14 @@ /** * Gets the return kind of this runtime call. */ - public Class getResultType() { + public Class getResultType() { return resultType; } /** * Gets the argument kinds of this runtime call. */ - public Class[] getArgumentTypes() { + public Class[] getArgumentTypes() { return argumentTypes.clone(); }