From e902d25c22f2bf1426d2619933587ace06a38921 Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Wed, 10 Dec 2025 20:51:03 -0800 Subject: [ObjC] Don't override the core.function.metaAnalysis workflow description Fixes https://github.com/Vector35/binaryninja-api/issues/7770. --- plugins/workflow_objc/src/workflow.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'plugins/workflow_objc/src') diff --git a/plugins/workflow_objc/src/workflow.rs b/plugins/workflow_objc/src/workflow.rs index f1054411..08a39042 100644 --- a/plugins/workflow_objc/src/workflow.rs +++ b/plugins/workflow_objc/src/workflow.rs @@ -10,12 +10,6 @@ pub enum Confidence { SuperInit = 100, } -const WORKFLOW_INFO: &str = r#"{ - "title": "Objective-C", - "description": "Enhanced analysis for Objective-C code.", - "capabilities": [] -}"#; - fn run( func: impl Fn(&AnalysisContext) -> Result<(), E>, ) -> impl Fn(&AnalysisContext) { @@ -92,7 +86,7 @@ pub fn register_activities() -> Result<(), WorkflowRegistrationError> { "core.function.generateMediumLevelIL", )? .activity_after(&super_init_activity, "core.function.generateMediumLevelIL")? - .register_with_config(WORKFLOW_INFO)?; + .register()?; Ok(()) } -- cgit v1.3.1