changeset 6712:c192b4efe96e

primitive types are not abstract
author Doug Simon <doug.simon@oracle.com>
date Mon, 12 Nov 2012 21:10:27 +0100
parents ae13cc658b80
children 030c4a1d6a03
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotTypePrimitive.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotTypePrimitive.java	Mon Nov 12 18:11:17 2012 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotTypePrimitive.java	Mon Nov 12 21:10:27 2012 +0100
@@ -47,7 +47,7 @@
     @Override
     public int getModifiers() {
         assert kind != null && kind.toJavaClass() != null;
-        return Modifier.ABSTRACT | Modifier.FINAL | Modifier.PUBLIC;
+        return Modifier.FINAL | Modifier.PUBLIC;
     }
 
     @Override