Remove obsolete trace

This commit is contained in:
pietervdvn 2022-06-06 20:20:52 +02:00
parent f37db71f0b
commit 637772a158

View file

@ -56,7 +56,6 @@ export class Stores {
public static ListStabilized<T>(src: Store<T[]>): Store<T[]> {
const stable = new UIEventSource<T[]>(undefined)
src.addCallbackAndRun(list => {
console.trace("Running list stabilization", list)
if (list === undefined) {
stable.setData(undefined)
return;