From c5a43450d3fedf61a26914d354be804ed0b8111d Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Fri, 26 Mar 2021 03:39:55 +0100 Subject: [PATCH] Remove console.log --- Logic/ExtraFunction.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/Logic/ExtraFunction.ts b/Logic/ExtraFunction.ts index 3969b94..432a549 100644 --- a/Logic/ExtraFunction.ts +++ b/Logic/ExtraFunction.ts @@ -45,10 +45,8 @@ Some advanced functions are available on feat as well: for (const layerId of layerIds) { const otherLayer = featuresPerLayer.get(layerId); if (otherLayer === undefined) { - console.error(`Trying to calculate 'overlapWith' with specified layer ${layerId}, but such layer is found`); continue; } - if (otherLayer.length === 0) { continue; }