Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Read annotations if superclass dictates that
  • Loading branch information
qistoph committed Apr 22, 2019
commit a2c0172858d465dbbe920c656252c02417d6bed1
3 changes: 3 additions & 0 deletions javaobj/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,9 @@ def do_object(self, parent=None, ident=0):
and classdesc.flags & self.SC_WRITE_METHOD
or classdesc.flags & self.SC_EXTERNALIZABLE
and classdesc.flags & self.SC_BLOCK_DATA
or classdesc.superclass is not None
and classdesc.superclass.flags & self.SC_SERIALIZABLE
and classdesc.superclass.flags & self.SC_WRITE_METHOD
):
# objectAnnotation
log_debug(
Expand Down