@dra2020/baseclient 1.0.168 → 1.0.169

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3234,9 +3234,6 @@ class GeoMultiCollection {
3234
3234
  else if (e.topo) {
3235
3235
  // New style, use splice on packed topologies
3236
3236
  let filterout = this.someHidden() ? this.hidden : null; // splice function requires NULL for empty
3237
- // DEBUGGING
3238
- filterout = null;
3239
- // DEBUGGING
3240
3237
  let topoarray = Object.values(this.entries).filter((e) => this._length(e) > 0)
3241
3238
  .map((e) => { return { topology: this._topo(e), filterout }; });
3242
3239
  this.all.topo = topoarray.length == 0 ? null : topoarray.length == 1 ? topoarray[0].topology : Poly.topoSplice(topoarray);