summaryrefslogtreecommitdiff
path: root/objectivec
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-04-01 01:34:01 -0400
committerMason Reed <mason@vector35.com>2025-04-02 05:36:54 -0400
commit1e397c9e39b2acf21d791ec26a6855292d82b885 (patch)
tree2933599ddfb77b84d60c9216adc579d056f1551a /objectivec
parente1b164fa2bd10d5662c65ed930416d2f911c12e1 (diff)
Remove ObjC todos which shouldnt be done
See: https://github.com/Vector35/binaryninja-api/pull/6540/files#r2020882071
Diffstat (limited to 'objectivec')
-rw-r--r--objectivec/objc.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/objectivec/objc.cpp b/objectivec/objc.cpp
index 9a12e0fc..f650500a 100644
--- a/objectivec/objc.cpp
+++ b/objectivec/objc.cpp
@@ -782,7 +782,6 @@ void ObjCProcessor::ReadListOfMethodLists(ObjCReader* reader, ClassBase& cls, st
head.entsizeAndFlags = reader->Read32();
head.count = reader->Read32();
- // TODO(WeiN76LQh): probably can be removed at this point
if (head.count > 0x1000)
{
m_logger->LogError("List of method lists at 0x%llx has an invalid count of 0x%x", start, head.count);
@@ -817,7 +816,6 @@ void ObjCProcessor::ReadMethodList(ObjCReader* reader, ClassBase& cls, std::stri
head.entsizeAndFlags = reader->Read32();
head.count = reader->Read32();
- // TODO(WeiN76LQh): probably can be removed at this point
if (head.count > 0x1000)
{
m_logger->LogError("Method list at 0x%llx has an invalid count of 0x%x", start, head.count);