File tree 2 files changed +0
-5
lines changed
2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -378,9 +378,6 @@ pub fn main_fetch(request: Rc<Request>,
378
378
}
379
379
}
380
380
381
- // Step 23
382
- request. done . set ( true ) ;
383
-
384
381
// Step 24
385
382
if let Some ( ref mut target) = * target {
386
383
target. process_response_eof ( & response) ;
Original file line number Diff line number Diff line change @@ -208,7 +208,6 @@ pub struct Request {
208
208
pub url_list : RefCell < Vec < ServoUrl > > ,
209
209
pub redirect_count : Cell < u32 > ,
210
210
pub response_tainting : Cell < ResponseTainting > ,
211
- pub done : Cell < bool > ,
212
211
}
213
212
214
213
impl Request {
@@ -246,7 +245,6 @@ impl Request {
246
245
url_list : RefCell :: new ( vec ! [ url] ) ,
247
246
redirect_count : Cell :: new ( 0 ) ,
248
247
response_tainting : Cell :: new ( ResponseTainting :: Basic ) ,
249
- done : Cell :: new ( false )
250
248
}
251
249
}
252
250
You can’t perform that action at this time.
0 commit comments