Skip to content

Commit

Permalink
remove duplicate property
Browse files Browse the repository at this point in the history
  • Loading branch information
blattm committed Oct 19, 2023
1 parent 495e268 commit 81448da
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions decompiler/structures/pseudo/complextypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,6 @@ def declaration(self) -> str:
members = ",\n\t".join(f"{x.name} = {x.value}" for x in self.members.values())
return f"{self.type_specifier.value} {self.name} {{\n\t{members}\n}}"

@property
def complex_type_name(self):
return ComplexTypeName(0, self.name)


@dataclass(frozen=True, order=True)
class ComplexTypeName(Type):
Expand Down

0 comments on commit 81448da

Please sign in to comment.