diff options
| author | Mark Rowe <mark@vector35.com> | 2025-12-10 20:51:03 -0800 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2025-12-11 21:03:53 -0800 |
| commit | e902d25c22f2bf1426d2619933587ace06a38921 (patch) | |
| tree | 8e3301d6c123f3fffcceb6b813adc95fd04fb3bd /plugins/workflow_objc | |
| parent | baa7f50a24e22c5a3057f0780c4c12c0e9db13a9 (diff) | |
[ObjC] Don't override the core.function.metaAnalysis workflow description
Fixes https://github.com/Vector35/binaryninja-api/issues/7770.
Diffstat (limited to 'plugins/workflow_objc')
| -rw-r--r-- | plugins/workflow_objc/src/workflow.rs | 8 |
1 files changed, 1 insertions, 7 deletions
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<E: std::fmt::Debug>( 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(()) } |
