Remove unused imports

This commit is contained in:
Mikayla 2023-11-17 23:14:14 -08:00
parent f9804feefa
commit 55dbcf2039
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
use collections::HashSet;
use editor::{Editor, GoToDiagnostic};
use gpui::{
div, rems, Div, EventEmitter, InteractiveComponent, ParentComponent, Render, Stateful,
rems, Div, EventEmitter, InteractiveComponent, ParentComponent, Render, Stateful,
StatefulInteractiveComponent, Styled, Subscription, View, ViewContext, WeakView,
};
use language::Diagnostic;

View file

@ -24,7 +24,7 @@ use std::{
Arc,
},
};
use theme2::default_color_scales;
use ui::v_stack;
use ui::{prelude::*, Icon, IconButton, IconElement, TextColor, Tooltip};
use util::truncate_and_remove_front;

View file

@ -63,7 +63,7 @@ use std::{
sync::{atomic::AtomicUsize, Arc},
time::Duration,
};
use theme2::{default_color_scales, ActiveTheme, ThemeSettings};
use theme2::{ActiveTheme, ThemeSettings};
pub use toolbar::{ToolbarItemEvent, ToolbarItemLocation, ToolbarItemView};
pub use ui;
use util::ResultExt;