clippy fixes for focus change

This commit is contained in:
K Simmons 2022-08-10 16:49:17 -07:00
parent 8ba2f77148
commit 9aa3f2d777
3 changed files with 8 additions and 9 deletions

View file

@ -1711,7 +1711,7 @@ impl Server {
Ok(()) Ok(())
} }
pub(crate) async fn store(&self) -> StoreGuard { pub(crate) async fn store(&self) -> StoreGuard<'_> {
#[cfg(test)] #[cfg(test)]
tokio::task::yield_now().await; tokio::task::yield_now().await;
let guard = self.store.lock().await; let guard = self.store.lock().await;

View file

@ -442,12 +442,11 @@ impl Buffer {
} }
fn build(buffer: TextBuffer, file: Option<Arc<dyn File>>) -> Self { fn build(buffer: TextBuffer, file: Option<Arc<dyn File>>) -> Self {
let saved_mtime; let saved_mtime = if let Some(file) = file.as_ref() {
if let Some(file) = file.as_ref() { file.mtime()
saved_mtime = file.mtime();
} else { } else {
saved_mtime = UNIX_EPOCH; UNIX_EPOCH
} };
Self { Self {
saved_mtime, saved_mtime,

View file

@ -703,9 +703,9 @@ impl From<Box<dyn ItemHandle>> for AnyViewHandle {
} }
} }
impl Into<AnyViewHandle> for &Box<dyn ItemHandle> { impl From<&Box<dyn ItemHandle>> for AnyViewHandle {
fn into(self) -> AnyViewHandle { fn from(val: &Box<dyn ItemHandle>) -> Self {
self.to_any() val.to_any()
} }
} }