* java/lang/VMClassLoader.java (getPrimitiveClass): Return correct
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 24 Jul 2001 14:31:42 +0000 (14:31 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 24 Jul 2001 14:31:42 +0000 (14:31 +0000)
type.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44296 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/lang/VMClassLoader.java

index 56d89c8..a146eb2 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-24  Tom Tromey  <tromey@redhat.com>
+
+       * java/lang/VMClassLoader.java (getPrimitiveClass): Return correct
+       type.
+
 2001-07-23  Tom Tromey  <tromey@redhat.com>
 
        * gcj/javaprims.h: Rebuilt class list.
index de0db88..dcfec05 100644 (file)
@@ -65,21 +65,21 @@ class VMClassLoader {
     if ("int".equals (type))
       return int.class;
     else if ("long".equals (type))
-      return int.class;
+      return long.class;
     else if ("boolean".equals (type))
-      return int.class;
+      return boolean.class;
     else if ("short".equals (type))
-      return int.class;
+      return short.class;
     else if ("char".equals (type))
-      return int.class;
+      return char.class;
     else if ("byte".equals (type))
-      return int.class;
+      return byte.class;
     else if ("float".equals (type))
-      return int.class;
+      return float.class;
     else if ("double".equals (type))
-      return int.class;
+      return double.class;
     else if ("void".equals (type))
-      return int.class;
+      return void.class;
     return null;
   }
 }