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:
parent
cb3d6d015b
commit
de3cb4e4c1
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user