diff c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeUnresolved.java @ 2293:e3c42b8de67e

Removed a reference to getRiType(Class c) and some checkstyle fixes.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 11 Apr 2011 17:42:45 +0200
parents 6190d20bd6d6
children
line wrap: on
line diff
--- a/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeUnresolved.java	Mon Apr 11 17:12:01 2011 +0200
+++ b/c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotTypeUnresolved.java	Mon Apr 11 17:42:45 2011 +0200
@@ -153,6 +153,11 @@
     }
 
     @Override
+    public RiType superType() {
+        throw unresolved("superType()");
+    }
+
+    @Override
     public RiType arrayOf() {
         return new HotSpotTypeUnresolved(compiler, simpleName, dimensions + 1);
     }