fixed trailing ,

This commit is contained in:
debris 2016-03-02 14:03:43 +01:00
parent 03ffcd0e64
commit 190468e1f8

View File

@ -57,7 +57,7 @@ impl<F, T> PollManager<F, T> where T: Timer {
pub fn new_with_timer(timer: T) -> Self { pub fn new_with_timer(timer: T) -> Self {
PollManager { PollManager {
polls: TransientHashMap::new_with_timer(POLL_LIFETIME, timer), polls: TransientHashMap::new_with_timer(POLL_LIFETIME, timer),
next_available_id: 0 next_available_id: 0,
} }
} }
@ -70,7 +70,7 @@ impl<F, T> PollManager<F, T> where T: Timer {
self.next_available_id += 1; self.next_available_id += 1;
self.polls.insert(id, PollInfo { self.polls.insert(id, PollInfo {
filter: filter, filter: filter,
block_number: block block_number: block,
}); });
id id
} }
@ -102,7 +102,7 @@ mod tests {
use v1::helpers::PollManager; use v1::helpers::PollManager;
struct TestTimer<'a> { struct TestTimer<'a> {
time: &'a RefCell<i64> time: &'a RefCell<i64>,
} }
impl<'a> Timer for TestTimer<'a> { impl<'a> Timer for TestTimer<'a> {
@ -115,7 +115,7 @@ mod tests {
fn test_poll_indexer() { fn test_poll_indexer() {
let time = RefCell::new(0); let time = RefCell::new(0);
let timer = TestTimer { let timer = TestTimer {
time: &time time: &time,
}; };
let mut indexer = PollManager::new_with_timer(timer); let mut indexer = PollManager::new_with_timer(timer);