Skip to content

Commit e902d25

Browse files
committed
[ObjC] Don't override the core.function.metaAnalysis workflow description
Fixes #7770.
1 parent baa7f50 commit e902d25

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

plugins/workflow_objc/src/workflow.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ pub enum Confidence {
1010
SuperInit = 100,
1111
}
1212

13-
const WORKFLOW_INFO: &str = r#"{
14-
"title": "Objective-C",
15-
"description": "Enhanced analysis for Objective-C code.",
16-
"capabilities": []
17-
}"#;
18-
1913
fn run<E: std::fmt::Debug>(
2014
func: impl Fn(&AnalysisContext) -> Result<(), E>,
2115
) -> impl Fn(&AnalysisContext) {
@@ -92,7 +86,7 @@ pub fn register_activities() -> Result<(), WorkflowRegistrationError> {
9286
"core.function.generateMediumLevelIL",
9387
)?
9488
.activity_after(&super_init_activity, "core.function.generateMediumLevelIL")?
95-
.register_with_config(WORKFLOW_INFO)?;
89+
.register()?;
9690

9791
Ok(())
9892
}

0 commit comments

Comments
 (0)