changeset 16715:e6960ff1f0f6

removed deprecated methods in MetaUtil
author Doug Simon <doug.simon@oracle.com>
date Wed, 06 Aug 2014 17:42:29 +0200
parents 1668de777c42
children bb030c4a6822
files graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/MetaUtil.java
diffstat 1 files changed, 0 insertions(+), 75 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/MetaUtil.java	Wed Aug 06 17:41:51 2014 +0200
+++ b/graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/MetaUtil.java	Wed Aug 06 17:42:29 2014 +0200
@@ -23,7 +23,6 @@
 package com.oracle.graal.api.meta;
 
 import java.io.*;
-import java.lang.annotation.*;
 import java.util.*;
 
 /**
@@ -333,78 +332,4 @@
         }
         return indentation + lines.replace(newLine, newLine + indentation);
     }
-
-    // The methods below here will be soon removed. They exist to simplify updating
-    // clients of the old API to switch to using the default methods that replace
-    // these utility methods. In Eclipse will show calls to these methods as warnings.
-
-    @Deprecated
-    public static boolean isJavaLangObject(ResolvedJavaType type) {
-        return type.isJavaLangObject();
-    }
-
-    @Deprecated
-    public static ResolvedJavaType[] lookupJavaTypes(MetaAccessProvider metaAccess, Class<?>[] classes) {
-        return metaAccess.lookupJavaTypes(classes);
-    }
-
-    @Deprecated
-    public static ResolvedJavaType getElementalType(ResolvedJavaType type) {
-        return type.getElementalType();
-    }
-
-    @Deprecated
-    public static String toJavaName(JavaType type, boolean qualified) {
-        return type.toJavaName(qualified);
-    }
-
-    @Deprecated
-    public static String toJavaName(JavaType type) {
-        return type.toJavaName();
-    }
-
-    @Deprecated
-    public static String toClassName(JavaType type) {
-        return type.toClassName();
-    }
-
-    @Deprecated
-    public static String format(String format, JavaMethod method) throws IllegalFormatException {
-        return method.format(format);
-    }
-
-    @Deprecated
-    public static String format(String format, JavaField field) throws IllegalFormatException {
-        return field.format(format);
-    }
-
-    @Deprecated
-    public static <T extends Annotation> T[] getParameterAnnotations(Class<T> annotationClass, ResolvedJavaMethod method) {
-        return method.getParameterAnnotations(annotationClass);
-    }
-
-    @Deprecated
-    public static <T extends Annotation> T getParameterAnnotation(Class<T> annotationClass, int parameterIndex, ResolvedJavaMethod method) {
-        return method.getParameterAnnotation(annotationClass, parameterIndex);
-    }
-
-    @Deprecated
-    public static JavaType[] signatureToTypes(Signature signature, JavaType receiverType) {
-        return signature.toParameterTypes(receiverType);
-    }
-
-    @Deprecated
-    public static JavaType[] signatureToTypes(ResolvedJavaMethod method) {
-        return method.toParameterTypes();
-    }
-
-    @Deprecated
-    public static String signatureToMethodDescriptor(Signature sig) {
-        return sig.toMethodDescriptor();
-    }
-
-    @Deprecated
-    public static String profileToString(ProfilingInfo info, ResolvedJavaMethod method, String sep) {
-        return info.toString(method, sep);
-    }
 }