refactor!: remove get_identifier_without_leaf

remove as its no longer used either internally or in mqttui for some time.
Either its quickly implemented yourself or `Vec::pop()` does the job better.
This commit is contained in:
EdJoPaTo
2024-02-26 20:49:21 +01:00
parent ed9a54a55a
commit a2f8100fe7
2 changed files with 0 additions and 29 deletions
-2
View File
@@ -17,12 +17,10 @@ use ratatui::widgets::{Block, Scrollbar, ScrollbarState, StatefulWidget, Widget}
use unicode_width::UnicodeWidthStr;
mod flatten;
mod identifier;
mod item;
mod state;
pub use crate::flatten::Flattened;
pub use crate::identifier::get_without_leaf as get_identifier_without_leaf;
pub use crate::item::Item as TreeItem;
pub use crate::state::State as TreeState;