From 66521926476a32643f6caec500f2de55c0fe219a Mon Sep 17 00:00:00 2001 From: Jakob Gerstmayer Date: Mon, 28 Oct 2019 12:55:26 +0100 Subject: [PATCH] fixed spacing issues (again) --- src/ol/format/filter/Bbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/format/filter/Bbox.js b/src/ol/format/filter/Bbox.js index f95f81d0e5..736abadcfc 100644 --- a/src/ol/format/filter/Bbox.js +++ b/src/ol/format/filter/Bbox.js @@ -30,7 +30,7 @@ class Bbox extends Filter { /** * @type {import("../../extent.js").Extent} */ - this.extent = extent; + this.extent = extent; if (extent.length !== 4) { throw new Error('Expected an extent with four values ([minX, minY, maxX, maxY])'); }