Fix Clone definition for Injector (#8194)

pull/6949/head
Michael Davis 2023-09-06 21:10:00 -05:00 committed by GitHub
parent e6cdc5f9d3
commit c0fd8bc61b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ impl<T: Item> Clone for Injector<T> {
Injector { Injector {
dst: self.dst.clone(), dst: self.dst.clone(),
editor_data: self.editor_data.clone(), editor_data: self.editor_data.clone(),
shutown: Arc::new(AtomicBool::new(false)), shutown: self.shutown.clone(),
} }
} }
} }