Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ConradIrwin committed Apr 11, 2024
1 parent 0ffe426 commit af920a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/collab_ui/src/collab_panel/dev_server_modal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl DevServerModal {
cx.observe(&channel_store, |_, _, cx| {
cx.notify();
}),
cx.on_focus_out(&focus_handle, |_, cx| { /* cx.emit(DismissEvent) */ }),
cx.on_focus_out(&focus_handle, |_, _cx| { /* cx.emit(DismissEvent) */ }),
];

Self {
Expand Down
3 changes: 2 additions & 1 deletion crates/gpui/src/app/async_context.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
use crate::{
AnyView, AnyWindowHandle, AppCell, AppContext, BackgroundExecutor, BorrowAppContext, Context,
DismissEvent, FocusableView, ForegroundExecutor, Global, Model, ModelContext, PromptLevel,
Render, Reservation, Result, Task, View, ViewContext, VisualContext, WindowContext, WindowHandle,
Render, Reservation, Result, Task, View, ViewContext, VisualContext, WindowContext,
WindowHandle,
};
use anyhow::{anyhow, Context as _};
use derive_more::{Deref, DerefMut};
Expand Down

0 comments on commit af920a2

Please sign in to comment.