scroll_pane: remove unused blanket impls for Vec<Line> and Text

Co-Authored-By: Kent Overstreet <kent.overstreet@gmail.com>
This commit is contained in:
ProofOfConcept 2026-04-11 01:37:26 -04:00
parent d18bf6243a
commit 4a1f5acb85

View file

@ -28,17 +28,6 @@ impl<'a> ScrollItem for Line<'a> {
}
}
impl<'a> ScrollItem for Vec<Line<'a>> {
fn content(&self) -> Text<'_> {
Text::from(self.clone())
}
}
impl<'a> ScrollItem for Text<'a> {
fn content(&self) -> Text<'_> {
self.clone()
}
}
// ── State ──────────────────────────────────────────────────────