Delete unused imports

This commit is contained in:
Antonio Scandurra 2023-08-23 09:58:41 +02:00
parent c2935056e8
commit a93583065b
2 changed files with 1 additions and 5 deletions

View file

@ -1,11 +1,8 @@
use std::{
cmp,
fmt::{self, Debug},
ops::Range,
};
use collections::BinaryHeap;
struct Matrix {
cells: Vec<isize>,
rows: usize,

View file

@ -7,8 +7,7 @@ use gpui::{
WeakViewHandle,
};
use menu::Confirm;
use similar::{Change, ChangeTag, TextDiff};
use std::{env, iter, ops::Range, sync::Arc};
use std::{env, sync::Arc};
use util::TryFutureExt;
use workspace::{Modal, Workspace};