chore: Remove trailing whitespace #129

Open
glen wants to merge 10 commits from glen/dyna3:noTrailingWhitespace into main
Showing only changes of commit a4b355d943 - Show all commits

View file

@ -687,7 +687,9 @@ impl Assembly {
}
pub fn try_insert_element(&self, elt: impl Element + 'static) -> bool {
let can_insert = self.elements_by_id.with_untracked(|elts_by_id| !elts_by_id.contains_key(elt.id()));
let can_insert = self.elements_by_id.with_untracked(
|elts_by_id| !elts_by_id.contains_key(elt.id())
);
if can_insert {
self.insert_element_unchecked(elt);
}