refactor(mysql): remove unused close! macro

This commit is contained in:
Ryan Leckey 2021-03-20 00:14:55 -07:00
parent 366741fe0f
commit 424d4b7aa1
No known key found for this signature in database
GPG Key ID: F8AA68C235AB08C9

View File

@ -213,13 +213,3 @@ impl<Rt: Runtime> MySqlStream<Rt> {
Ok(())
}
}
macro_rules! close {
(@blocking $self:ident) => {
$self.close_blocking()?
};
($self:ident) => {
$self.close_async().await?
};
}