[fix](trx-server): remove unused clear_cw_history method

No reset event for CW is wired in rig_task.rs, so the method was
dead code and triggered a compiler warning.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-03-07 10:16:36 +01:00
parent 53199642ea
commit cbf3301664
-4
View File
@@ -282,10 +282,6 @@ impl DecoderHistories {
h.iter().map(|(_, evt)| evt.clone()).collect()
}
pub fn clear_cw_history(&self) {
self.cw.lock().expect("cw history mutex poisoned").clear();
}
// --- FT8 ---
fn prune_ft8(history: &mut VecDeque<(Instant, Ft8Message)>) {