From 00e49590552abc4b36166cf0f80391da7141eec2 Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Mon, 10 Nov 2025 13:24:14 -0400 Subject: [PATCH] Remove unused code --- core/src/text_buffer/rope/tests/mod.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/src/text_buffer/rope/tests/mod.rs b/core/src/text_buffer/rope/tests/mod.rs index 9d54188..b86adfb 100644 --- a/core/src/text_buffer/rope/tests/mod.rs +++ b/core/src/text_buffer/rope/tests/mod.rs @@ -45,12 +45,6 @@ fn small_test_rope_with_multibyte_chars() -> Rc { ) } -fn small_test_rope_with_multibyte_chars_leaf_strings() -> Vec<&'static str> { - vec![ - "aあbc", "deえf", "g", "hiい", "jklm", "n", "おop", "qr", "stuうv", "wxyz", - ] -} - fn small_test_rope_with_multibyte_chars_full_string() -> &'static str { "aあbcdeえfghiいjklmnおopqrstuうvwxyz" }