Cleanup unneeded compiler flag

This commit is contained in:
Jonathan Turner 2019-08-22 04:00:29 +12:00
parent 23ef76a86b
commit 8e5744cf9b

View File

@ -2,8 +2,7 @@ use crate::commands::WholeStreamCommand;
use crate::errors::ShellError; use crate::errors::ShellError;
use crate::object::process::process_dict; use crate::object::process::process_dict;
use crate::prelude::*; use crate::prelude::*;
#[allow(unused)] use sysinfo::SystemExt;
use sysinfo::{RefreshKind, SystemExt};
pub struct PS; pub struct PS;
@ -35,6 +34,7 @@ fn ps(args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, Sh
#[cfg(not(target_os = "linux"))] #[cfg(not(target_os = "linux"))]
{ {
use sysinfo::RefreshKind;
let mut sy = sysinfo::System::new_with_specifics(RefreshKind::new().with_processes()); let mut sy = sysinfo::System::new_with_specifics(RefreshKind::new().with_processes());
sy.refresh_processes(); sy.refresh_processes();