Skip to content

Commit e44b8a7

Browse files
committed
Remove #[cfg(feature = "cargo-clippy")]
This has been deprecated in favor of cfg(clippy) and namespaced lints.
1 parent 4da814f commit e44b8a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ where
193193
}
194194

195195
/// Build custom `Json` `Drain`
196-
#[cfg_attr(feature = "cargo-clippy", allow(clippy::new_ret_no_self))]
196+
#[allow(clippy::new_ret_no_self)]
197197
pub fn new(io: W) -> JsonBuilder<W> {
198198
JsonBuilder::new(io)
199199
}

0 commit comments

Comments
 (0)