diff c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodUnresolved.java @ 2055:99ad52189524

Refactorings to get towards less CRI overhead.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Thu, 13 Jan 2011 17:45:17 +0100
parents 7e09ea4a8f36
children e5ba25730d9b
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodUnresolved.java	Wed Jan 12 19:14:32 2011 +0100
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotMethodUnresolved.java	Thu Jan 13 17:45:17 2011 +0100
@@ -28,9 +28,7 @@
  *
  * @author Lukas Stadler
  */
-public class HotSpotMethodUnresolved implements HotSpotMethod {
-    private final String name;
-    private final RiType holder;
+public final class HotSpotMethodUnresolved extends HotSpotMethod {
     private final RiSignature signature;
 
     public HotSpotMethodUnresolved(String name, String signature, RiType holder) {
@@ -40,16 +38,6 @@
     }
 
     @Override
-    public String name() {
-        return name;
-    }
-
-    @Override
-    public RiType holder() {
-        return holder;
-    }
-
-    @Override
     public RiSignature signature() {
         return signature;
     }