summaryrefslogtreecommitdiff
path: root/src/cmd.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd.rs')
-rw-r--r--src/cmd.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/cmd.rs b/src/cmd.rs
index 1891a28..ba6ec89 100644
--- a/src/cmd.rs
+++ b/src/cmd.rs
@@ -129,13 +129,6 @@ impl<'out> CargoSubcommand<'out> {
self
}
- /// RUSTFLAGS="-A warnings"
- #[inline]
- pub fn hide_warnings(&mut self) -> &mut Self {
- self.cmd.env("RUSTFLAGS", "-A warnings");
- self
- }
-
/// The boolean in the returned `Result` is true if the command's exit status is success.
#[inline]
pub fn run(self, description: &str) -> Result<bool> {