Remove unused variables.

This commit is contained in:
Jared Boone 2016-01-23 17:53:33 -08:00
parent 14f18d5cf7
commit e4f5539407
3 changed files with 1 additions and 4 deletions

View file

@ -243,7 +243,7 @@ void TPMSAppView::on_packet(const tpms::Packet& packet) {
const auto reading_opt = packet.reading();
if( reading_opt.is_valid() ) {
const auto reading = reading_opt.value();
const auto updated_entry = recent.on_packet({ reading.type(), reading.id() }, reading);
recent.on_packet({ reading.type(), reading.id() }, reading);
recent_entries_view.set_dirty();
}
}