From 3fc8b2894f5422d4925ddd85a6524792f6e8865b Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Wed, 10 Dec 2025 17:48:46 -0800 Subject: [PATCH] fix: remove inaccurate `#[allow(dead_code)]` marker (#7851) Me reading this clippy warning: image --- codex-rs/core/src/model_provider_info.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/codex-rs/core/src/model_provider_info.rs b/codex-rs/core/src/model_provider_info.rs index 82072fc2a..aa8650101 100644 --- a/codex-rs/core/src/model_provider_info.rs +++ b/codex-rs/core/src/model_provider_info.rs @@ -99,7 +99,6 @@ pub struct ModelProviderInfo { } impl ModelProviderInfo { - #[allow(dead_code)] fn build_header_map(&self) -> crate::error::Result { let mut headers = HeaderMap::new(); if let Some(extra) = &self.http_headers {