Fix more warnings

This commit is contained in:
Joseph T. Lyons 2023-12-25 07:02:19 -05:00
parent 8f3ea6ccb3
commit 12fe64b177

View file

@ -250,7 +250,7 @@ fn main() {
cx: &mut AppContext,
) {
let task = workspace::open_paths(&paths, &app_state, None, cx);
cx.spawn(|cx| async move {
cx.spawn(|_| async move {
if let Some((_window, results)) = task.await.log_err() {
for result in results {
if let Some(Err(e)) = result {
@ -311,10 +311,7 @@ fn main() {
}
let app_state = app_state.clone();
let closure_client = client.clone();
cx.spawn(move |mut cx| {
let client = closure_client.clone();
async move {
cx.spawn(move |cx| async move {
while let Some(request) = open_rx.next().await {
match request {
OpenRequest::Paths { paths } => {
@ -346,8 +343,7 @@ fn main() {
let app_state = app_state.clone();
let open_notes_task = cx.spawn(|mut cx| async move {
let workspace_window =
workspace::get_any_active_workspace(app_state, cx.clone())
.await?;
workspace::get_any_active_workspace(app_state, cx.clone()).await?;
let _ = workspace_window
.update(&mut cx, |_, cx| {
ChannelView::open(channel_id, cx.view().clone(), cx)
@ -360,7 +356,6 @@ fn main() {
}
}
}
}
})
.detach();
@ -773,7 +768,7 @@ async fn watch_languages(fs: Arc<dyn fs::Fs>, languages: Arc<LanguageRegistry>)
fn watch_file_types(fs: Arc<dyn fs::Fs>, cx: &mut AppContext) {
use std::time::Duration;
cx.spawn(|mut cx| async move {
cx.spawn(|cx| async move {
let mut events = fs
.watch(
"assets/icons/file_icons/file_types.json".as_ref(),