Little cleanup

This commit is contained in:
Steven Fackler 2015-02-28 14:05:37 -08:00
parent 3ec5517197
commit af0b6d003d

View File

@ -1913,10 +1913,7 @@ impl<'trans, 'stmt> LazyRows<'trans, 'stmt> {
max_rows: self.row_limit
},
Sync]));
read_rows(&mut conn, &mut self.data).map(|more_rows| {
self.more_rows = more_rows;
()
})
read_rows(&mut conn, &mut self.data).map(|more_rows| self.more_rows = more_rows)
}
/// Returns a slice describing the columns of the `LazyRows`.