13
0

Remove unused code

This commit is contained in:
Len Ovens 2021-05-17 13:50:18 -07:00
parent ab7c6e74e0
commit f9557d0d04

View File

@ -467,12 +467,6 @@ OSCGlobalObserver::mark_update ()
send_str = lm[prev].label;
prev_mark = lm[prev].when;
next_mark = lm[next].when;
if (_last_sample > lm[lm.size() - 1].when) {
send_str = string_compose ("%1 <-", lm[lm.size() - 1].label);
}
if (_last_sample < lm[0].when) {
send_str = string_compose ("-> %1", lm[0].label);
}
} else if ((prev_mark != lm[prev].when) || (next_mark != lm[next].when)) {
send_str = string_compose ("%1 <-> %2", lm[prev].label, lm[next].label);
}