From 1e397c9e39b2acf21d791ec26a6855292d82b885 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 1 Apr 2025 01:34:01 -0400 Subject: Remove ObjC todos which shouldnt be done See: https://github.com/Vector35/binaryninja-api/pull/6540/files#r2020882071 --- objectivec/objc.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'objectivec/objc.cpp') 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); -- cgit v1.3.1