* java/lang/natClass.cc (isInstance): Use JV_CLASS, not getClass().
From-SVN: r32665
This commit is contained in:
committed by
Bryce McKinlay
parent
afccdd1d6c
commit
a09f61183a
@@ -625,7 +625,7 @@ java::lang::Class::isInstance (jobject obj)
|
||||
if (! obj || isPrimitive ())
|
||||
return false;
|
||||
_Jv_InitClass (this);
|
||||
return _Jv_IsAssignableFrom (this, obj->getClass());
|
||||
return _Jv_IsAssignableFrom (this, JV_CLASS (obj));
|
||||
}
|
||||
|
||||
inline jboolean
|
||||
|
||||
Reference in New Issue
Block a user