mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
don't populate interface vtables for abstract classes
This commit is contained in:
parent
d8889bd4d8
commit
56389dd2e1
@ -1279,7 +1279,9 @@ parseMethodTable(Thread* t, Stream& s, object class_, object pool)
|
||||
}
|
||||
}
|
||||
|
||||
if (populateInterfaceVtables) {
|
||||
if (populateInterfaceVtables
|
||||
and (classFlags(t, class_) & ACC_ABSTRACT) == 0)
|
||||
{
|
||||
// generate interface vtables
|
||||
object itable = classInterfaceTable(t, class_);
|
||||
if (itable) {
|
||||
|
Loading…
Reference in New Issue
Block a user