From c9d33fb03ac0ca99cfef4b03f3fdd31065044568 Mon Sep 17 00:00:00 2001 From: Guillaume Beraudo Date: Mon, 30 Jan 2017 17:18:30 +0100 Subject: [PATCH] Fix missing require --- src/ol/format/filter/logicalnary.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ol/format/filter/logicalnary.js b/src/ol/format/filter/logicalnary.js index fd19fe8909..530c5e4d4f 100644 --- a/src/ol/format/filter/logicalnary.js +++ b/src/ol/format/filter/logicalnary.js @@ -1,6 +1,7 @@ goog.provide('ol.format.filter.LogicalNary'); goog.require('ol'); +goog.require('ol.asserts'); goog.require('ol.format.filter.Filter');