From 9c577a4d803f90535685418a18454e6729cb7b49 Mon Sep 17 00:00:00 2001 From: Manuel Blatt Date: Thu, 29 Aug 2024 14:13:50 +0200 Subject: [PATCH] remove stray comment --- decompiler/frontend/binaryninja/handlers/assignments.py | 1 - 1 file changed, 1 deletion(-) diff --git a/decompiler/frontend/binaryninja/handlers/assignments.py b/decompiler/frontend/binaryninja/handlers/assignments.py index 23c458292..a751cd365 100644 --- a/decompiler/frontend/binaryninja/handlers/assignments.py +++ b/decompiler/frontend/binaryninja/handlers/assignments.py @@ -79,7 +79,6 @@ def lift_set_field(self, assignment: mediumlevelil.MediumLevelILSetVarField, is_ writes_memory=assignment.dest.version, ) value = self._lifter.lift(assignment.src) - # TODO: does ComplexTypeName occur as well? If so does it need to be treated differently? # case 2 (contraction): elif assignment.offset == 0 and self._lifter.is_omitting_masks: destination = self._lift_contraction(assignment, is_aliased=is_aliased, parent=assignment)