Commit de3cb4e4 by Tom Tromey Committed by Tom Tromey

re GNATS gcj/152 (Installation flaw)

	* gcj/field.h (_Jv_Field::getClass): Don't use JvAssert.
	Fixes PR gcj/152.

From-SVN: r32036
parent cb3d6d01
2000-02-17 Tom Tromey <tromey@cygnus.com>
* gcj/field.h (_Jv_Field::getClass): Don't use JvAssert.
Fixes PR gcj/152.
2000-02-16 Tom Tromey <tromey@cygnus.com> 2000-02-16 Tom Tromey <tromey@cygnus.com>
* jni.cc (_Jv_JNI_CallStaticMethodV): Added some assertions. * jni.cc (_Jv_JNI_CallStaticMethodV): Added some assertions.
......
...@@ -68,7 +68,9 @@ struct _Jv_Field ...@@ -68,7 +68,9 @@ struct _Jv_Field
jclass getClass () jclass getClass ()
{ {
JvAssert (isResolved ()); // We can't use JvAssert here because it is not in a public
// header.
// JvAssert (isResolved ());
return type; return type;
} }
......
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