re GNATS gcj/152 (Installation flaw)

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

From-SVN: r32036
This commit is contained in:
Tom Tromey 2000-02-17 18:34:14 +00:00 committed by Tom Tromey
parent cb3d6d015b
commit de3cb4e4c1
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
* jni.cc (_Jv_JNI_CallStaticMethodV): Added some assertions.

View File

@ -68,7 +68,9 @@ struct _Jv_Field
jclass getClass ()
{
JvAssert (isResolved ());
// We can't use JvAssert here because it is not in a public
// header.
// JvAssert (isResolved ());
return type;
}