diff --git a/conductor/tracks/feature_bleed_cleanup_20260302/plan.md b/conductor/tracks/feature_bleed_cleanup_20260302/plan.md index 8a30279..68bebcf 100644 --- a/conductor/tracks/feature_bleed_cleanup_20260302/plan.md +++ b/conductor/tracks/feature_bleed_cleanup_20260302/plan.md @@ -7,7 +7,7 @@ Architecture reference: [docs/guide_architecture.md](../../../docs/guide_archite ## Phase 1: Dead Code Removal Focus: Delete the two confirmed dead code blocks — no behavior change, pure deletion. -- [ ] Task 1.1: In `gui_2.py`, delete the first `_render_comms_history_panel` definition. +- [x] Task 1.1: In `gui_2.py`, delete the first `_render_comms_history_panel` definition. 2e9c995 - **Location**: Lines 3041-3073 (use `py_get_code_outline` to confirm current line numbers before editing). - **What**: The entire method body from `def _render_comms_history_panel(self) -> None:` through `imgui.end_child()` and the following blank line. The live version begins at ~line 3435 after this deletion shifts lines. - **How**: Use `set_file_slice` to delete lines 3041-3073 (replace with empty string). Then run `py_get_code_outline` to confirm only one `_render_comms_history_panel` remains.