Skip to content

Commit a489f93

Browse files
committed
Remove unused imports.
1 parent 96c9655 commit a489f93

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/proto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use error::{Error, ProtoError, Result};
88
use reply::Reply;
99
use std::collections::BTreeMap;
1010
use std::fmt::Arguments;
11-
use std::io::{self, BufRead, Lines, Read, Write};
11+
use std::io::{self, Lines, Read, Write};
1212

1313
pub struct Pairs<I>(pub I);
1414

src/search.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
#![allow(missing_docs)]
22
// TODO: unfinished functionality
33

4-
use client::Client;
5-
use convert::{FromMap, ToPlaylistName};
6-
use error::Result;
7-
use proto::Proto;
8-
use song::Song;
94
use std::borrow::Cow;
105
use std::convert::Into;
116
use std::fmt;
12-
use std::io::{Read, Write};
137

148
pub enum Term<'a> {
159
Any,

0 commit comments

Comments
 (0)