Commit 82545bf7 by Tom Tromey Committed by Tom Tromey

VMClassLoader.java (getPrimitiveClass): Return correct type.

	* java/lang/VMClassLoader.java (getPrimitiveClass): Return correct
	type.

From-SVN: r44296
parent 897c6ab7
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.
......
......@@ -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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment