summaryrefslogtreecommitdiff
path: root/plugins/workflow_objc
diff options
context:
space:
mode:
authorMark Rowe <mark@vector35.com>2025-12-10 20:51:03 -0800
committerMark Rowe <mark@vector35.com>2025-12-11 21:03:53 -0800
commite902d25c22f2bf1426d2619933587ace06a38921 (patch)
tree8e3301d6c123f3fffcceb6b813adc95fd04fb3bd /plugins/workflow_objc
parentbaa7f50a24e22c5a3057f0780c4c12c0e9db13a9 (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.rs8
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(())
}