Merge rust-bitcoin/rust-bitcoin#965: Remove unnecessary `Write as _fmtWrite`

033a12def7 Remove unused Write as _fmtWrite (Tobin C. Harding)

Pull request description:

  We can bring the `Write` trait into scope, no need to underscore it.

  Done as part of the MSRV checklist.

ACKs for top commit:
  Kixunil:
    ACK 033a12def7
  elichai:
    ACK 033a12def7
  apoelstra:
    ACK 033a12def7
  sanket1729:
    utACK 033a12def7

Tree-SHA512: ce1c7ec2376d4838066a6d87f2cc9fe4c911090a58c397d2f4080c4d40c913cff4999e2620054a32b72aa197254ffed74633ddb75ece175813d867c3d53892d2
This commit is contained in:
sanket1729 2022-04-21 17:11:23 -07:00
commit 53a781ae3c
No known key found for this signature in database
GPG Key ID: 648FFB183E0870A2
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ pub use secp256k1::{XOnlyPublicKey, KeyPair};
use prelude::*;
use core::{ops, str::FromStr};
use core::fmt::{self, Write as _fmtWrite};
use core::fmt::{self, Write};
use io;
#[cfg(feature = "std")] use std::error;