Skip to content

Commit 0a2f613

Browse files
committed
style(inoculate): rm needless lifetimes (#502)
1 parent 64d71ea commit 0a2f613

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inoculate/src/trace.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,12 @@ impl CargoFormatter {
129129

130130
// === impl Visitor ===
131131

132-
impl<'styles, 'writer> Visitor<'styles, 'writer> {
132+
impl Visitor<'_, '_> {
133133
const MESSAGE: &'static str = "message";
134134
const INDENT: usize = 12;
135135
}
136136

137-
impl<'styles, 'writer> Visit for Visitor<'styles, 'writer> {
137+
impl Visit for Visitor<'_, '_> {
138138
fn record_debug(&mut self, field: &Field, value: &dyn fmt::Debug) {
139139
// If we're writing the first field of the event, either emit cargo
140140
// formatting, or a level header.

0 commit comments

Comments
 (0)