gr-diff-processor: remove unused resolve value

The groups array passed to resolve() is never used, the array is passed
to gr-diff-builder through two-way binding since:

* db881fa Asynchronous diff rendering

Change-Id: I1ff5c436bb6ef432c4b595cb073ee95a3f1d5656
This commit is contained in:
Sven Selberg
2020-02-25 09:49:53 +01:00
parent 86ed9708d2
commit 957405b507

View File

@@ -172,7 +172,7 @@
}
// If we are done, resolve the promise.
if (state.chunkIndex >= chunks.length) {
resolve(this.groups);
resolve();
this._nextStepHandle = null;
return;
}