File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ def __str__(self):
265265 __repr__ = __str__
266266
267267 def load_from_blockdata (
268- self , reader : DataStreamReader , indent : int = 0
268+ self , parser , reader : DataStreamReader , indent : int = 0
269269 ) -> bool :
270270 """
271271 Reads content stored in a block data
Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ def _read_class_data(self, instance: JavaInstance) -> None:
484484
485485 if cd .desc_flags & constants .SC_BLOCK_DATA :
486486 # Call the transformer if possible
487- if not instance .load_from_blockdata (self .__reader ):
487+ if not instance .load_from_blockdata (self , self .__reader ):
488488 # Can't read :/
489489 raise ValueError (
490490 "hit externalizable with nonzero SC_BLOCK_DATA; "
You can’t perform that action at this time.
0 commit comments