From 6e1da0145b1fb0fe5493c42b425f5c0af500a7ec Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 4 Mar 2022 11:30:33 +0000 Subject: [PATCH] Remove now-obsolete note about location of skip_fmt Now the diff from the merge base does not contain any hits for ^\+.*bytes --- crates/tor-basic-utils/src/lib.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/tor-basic-utils/src/lib.rs b/crates/tor-basic-utils/src/lib.rs index c69f783f9..e386a74f0 100644 --- a/crates/tor-basic-utils/src/lib.rs +++ b/crates/tor-basic-utils/src/lib.rs @@ -51,11 +51,6 @@ use std::fmt; /// assert_eq!( format!("{:?}", &Wombat::default()), /// "Wombat { visible: 0, invisible: .. }" ); /// ``` -// -// This function is here in tor-bytes because crates that want to use it will largely -// be trying to avoid dumping packet data. -// But, it may at some point want to move to a lower-layer crate. -// If we do that, we should `pub use` it here, if we don't want a semver break. pub fn skip_fmt(_: &T, f: &mut fmt::Formatter) -> fmt::Result { /// Inner function avoids code bloat due to generics fn inner(f: &mut fmt::Formatter) -> fmt::Result {