remove unnecessary check for lists

This commit is contained in:
Nikolaus Gullotta 2019-08-26 12:57:20 -05:00 committed by Nikolaus Gullotta
parent 05a93ce6fd
commit 2ea77a93ca
No known key found for this signature in database
GPG key ID: 565F60578092AA31

View file

@ -614,10 +614,6 @@ void MixerSnapshotList::redisplay()
active_list = _session->snapshot_manager().get_local_snapshots();
}
if(active_list.empty()) {
return;
}
_snapshot_model->clear();
for(SnapshotList::const_iterator it = active_list.begin(); it != active_list.end(); it++) {
new_row_from_snapshot((*it));