Remove unnecessary full module names.

This commit is contained in:
Nolan Darilek 2020-10-14 03:54:53 -05:00
parent a281d74e5c
commit e66b8403aa
1 changed files with 2 additions and 2 deletions

View File

@ -150,9 +150,9 @@ lazy_static! {
pub struct TTS(Box<dyn Backend>);
unsafe impl std::marker::Send for TTS {}
unsafe impl Send for TTS {}
unsafe impl std::marker::Sync for TTS {}
unsafe impl Sync for TTS {}
impl TTS {
/**