javaclass

Change of classfile.py

44:eeb675a30dd9
classfile.py
     1.1 --- a/classfile.py	Sat Nov 13 21:00:48 2004 +0100
     1.2 +++ b/classfile.py	Sat Nov 13 23:16:42 2004 +0100
     1.3 @@ -366,7 +366,7 @@
     1.4          data = data[6:]
     1.5          for i in range(0, self.local_variable_table_length):
     1.6              local_variable = LocalVariableInfo()
     1.7 -            data = local_variable.init(data)
     1.8 +            data = local_variable.init(data, self.class_file)
     1.9              self.local_variable_table.append(local_variable)
    1.10          return data
    1.11