diff --git a/crates/voicevox_core/src/text_analyzer.rs b/crates/voicevox_core/src/text_analyzer.rs index 3a5e4a442..e91d94b9c 100644 --- a/crates/voicevox_core/src/text_analyzer.rs +++ b/crates/voicevox_core/src/text_analyzer.rs @@ -11,12 +11,6 @@ pub trait TextAnalyzer { #[derive(Clone)] pub struct KanaAnalyzer; -impl KanaAnalyzer { - pub fn new() -> Self { - Self {} - } -} - impl TextAnalyzer for KanaAnalyzer { fn analyze(&self, text: &str) -> Result> { if text.is_empty() {