Merge pull request #4702 from aydinkim/patch-1

Delete unnecessary logs
This commit is contained in:
Brian Anderson 2013-01-31 16:57:30 -08:00
commit c95c7c87b1
1 changed files with 0 additions and 2 deletions

View File

@ -180,10 +180,8 @@ impl<A> DVec<A> {
data <-> self.data;
let data_ptr: *() = cast::reinterpret_cast(&data);
if data_ptr.is_null() { fail ~"Recursive use of dvec"; }
log(error, ~"a");
self.data = move ~[move t];
self.data.push_all_move(move data);
log(error, ~"b");
}
}