changeset 9488:01a85ad09b5e

Add generic type to avoid Java compiler warnings
author Christian Wimmer <christian.wimmer@oracle.com>
date Wed, 01 May 2013 18:06:01 -0700
parents 2b663d5893d3
children b9e66fc67b31
files graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/RuntimeCallTarget.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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();
         }