Skip to content

Commit f59e619

Browse files
haasonsaasclaude
andcommitted
fix: correct field name in PluginManager constructor
- Change plugins to _plugins to match the struct field name 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5987f9a commit f59e619

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/plugin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub struct PluginManager {
2525
impl PluginManager {
2626
pub fn new() -> Self {
2727
Self {
28-
plugins: HashMap::new(),
28+
_plugins: HashMap::new(),
2929
pre_analyzers: Vec::new(),
3030
post_processors: Vec::new(),
3131
}

0 commit comments

Comments
 (0)