From 3559ac2b215b6f4dd91e569ac565835a5273b7f9 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 2 Aug 2022 15:05:28 -0400 Subject: [PATCH] remove trailing whitespace --- components/salsa-entity-macros/src/entity_like.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/salsa-entity-macros/src/entity_like.rs b/components/salsa-entity-macros/src/entity_like.rs index f02ae842..d8aa6334 100644 --- a/components/salsa-entity-macros/src/entity_like.rs +++ b/components/salsa-entity-macros/src/entity_like.rs @@ -27,7 +27,7 @@ use heck::CamelCase; -use crate::{data_item::DataItem, options::Options, configuration}; +use crate::{configuration, data_item::DataItem, options::Options}; pub(crate) struct EntityLike { args: Options, @@ -221,13 +221,13 @@ impl EntityLike { type Key = #ident; type Value = #value_field_ty; const CYCLE_STRATEGY: salsa::cycle::CycleRecoveryStrategy = salsa::cycle::CycleRecoveryStrategy::Panic; - + #should_backdate_value_fn - + fn execute(db: &salsa::function::DynDb, key: Self::Key) -> Self::Value { unreachable!() } - + fn recover_from_cycle(db: &salsa::function::DynDb, cycle: &salsa::Cycle, key: Self::Key) -> Self::Value { unreachable!() }