From 259d650a214c50666027724f0cecaf0752b712d3 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Mon, 30 Mar 2015 10:22:15 +0200 Subject: [PATCH] Remove an unused import. I accidentally left it in after removing the calls to stdout/stderr in d926b8342b492cfa442a72b4d4da01e7e23d9cba. --- ports/gonk/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/gonk/build.rs b/ports/gonk/build.rs index e2017fdeff0..ae700674ec0 100644 --- a/ports/gonk/build.rs +++ b/ports/gonk/build.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use std::env; -use std::process::{Command, Stdio}; +use std::process::Command; fn main() { let out_dir = env::var("OUT_DIR").unwrap();