From 7e8c4181555a07c059e6f84a62718faa29c5945a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Thu, 21 Jun 2012 20:15:24 +0200 Subject: [PATCH] fix ol.error --- src/ol/error.js | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/ol/error.js b/src/ol/error.js index c81ecbe8cd..8f900915b9 100644 --- a/src/ol/error.js +++ b/src/ol/error.js @@ -1,13 +1,5 @@ goog.provide('ol.error'); - -/** - * @define - * @type {boolean} - */ -ol.error.VERBOSE_ERRORS = true; - - /** * @param {string} message Message. */ @@ -18,3 +10,8 @@ ol.error = function(message) { throw null; } }; + +/** + * @define {boolean} + */ +ol.error.VERBOSE_ERRORS = true;