From cd0d1d3340008b7da603324c722fd67c9df6cb6c Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Mon, 17 Jan 2022 15:27:24 +0100 Subject: [PATCH] Delete unused `pane::State` struct --- crates/workspace/src/pane.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/crates/workspace/src/pane.rs b/crates/workspace/src/pane.rs index 731db29d63..e1024b9a22 100644 --- a/crates/workspace/src/pane.rs +++ b/crates/workspace/src/pane.rs @@ -57,17 +57,6 @@ pub enum Event { const MAX_TAB_TITLE_LEN: usize = 24; -#[derive(Debug, Eq, PartialEq)] -pub struct State { - pub tabs: Vec, -} - -#[derive(Debug, Eq, PartialEq)] -pub struct TabState { - pub title: String, - pub active: bool, -} - pub struct Pane { item_views: Vec<(usize, Box)>, active_item: usize,