forked from M-Labs/artiq
1
0
Fork 0

firmware: simplify some `use`s.

This commit is contained in:
whitequark 2018-05-14 19:24:14 +00:00
parent d93aa13fd6
commit a4ab236af3
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
use alloc::vec::Vec; use alloc::Vec;
#[cfg(feature = "log")] #[cfg(feature = "log")]
use log; use log;

View File

@ -1,5 +1,4 @@
use alloc::vec::Vec; use alloc::{Vec, String};
use alloc::string::String;
use io::{Read, Write, Error, Result}; use io::{Read, Write, Error, Result};
use io::proto::{ProtoRead, ProtoWrite}; use io::proto::{ProtoRead, ProtoWrite};