-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
cleanupCode cleanupCode cleanuppriority: highHigh priority issueHigh priority issuetech-debtTechnical debtTechnical debt
Description
Description
Remove unused fields marked with #[allow(dead_code)] that are no longer needed.
Current State
// src/ui/app.rs:28
#[allow(dead_code)]
egui_graph: Graph<ModuleNode, TopicEdge>,
// src/ui/app.rs:59
#[allow(dead_code)]
sound_enabled: bool,Proposed Solution
- Remove
egui_graphfield entirely (unused, was likely for egui_graphs integration that was not completed) - Either implement sound feature or remove
sound_enabledfield
Acceptance Criteria
- Remove
egui_graphfield and its initialization - Remove
sound_enabledfield (or create ticket to implement sound) - Remove corresponding imports if no longer needed
- All tests pass
Files Affected
src/ui/app.rs
Metadata
Metadata
Assignees
Labels
cleanupCode cleanupCode cleanuppriority: highHigh priority issueHigh priority issuetech-debtTechnical debtTechnical debt