Auto merge of #7798 - Ms2ger:dead, r=jdm

Remove dead code from net_traits.

It was added in commit ecf02a3656.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7798)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-09-30 08:14:05 -06:00
commit 61be58a87f

View file

@ -5,7 +5,6 @@
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(custom_attribute)] #![feature(custom_attribute)]
#![feature(custom_derive)] #![feature(custom_derive)]
#![feature(box_raw)]
#![feature(plugin)] #![feature(plugin)]
#![feature(slice_patterns)] #![feature(slice_patterns)]
#![feature(step_by)] #![feature(step_by)]
@ -83,11 +82,6 @@ pub enum ResponseMsg {
Errored Errored
} }
pub struct ResponseLoader {
response: Response,
chan: Receiver<ResponseMsg>
}
/// A [Response](https://fetch.spec.whatwg.org/#concept-response) as defined by the Fetch spec /// A [Response](https://fetch.spec.whatwg.org/#concept-response) as defined by the Fetch spec
#[derive(Clone)] #[derive(Clone)]
pub struct Response { pub struct Response {