From d740640321d98dd6585ebf2a25876c6a0b3e68d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Dub=C3=A9?= Date: Fri, 27 Mar 2015 09:07:34 -0400 Subject: [PATCH] Fix type of source and features --- src/ol/interaction/snapinteraction.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/interaction/snapinteraction.js b/src/ol/interaction/snapinteraction.js index 18bf8a9d22..30f7014c2a 100644 --- a/src/ol/interaction/snapinteraction.js +++ b/src/ol/interaction/snapinteraction.js @@ -56,13 +56,13 @@ ol.interaction.Snap = function(opt_options) { var options = goog.isDef(opt_options) ? opt_options : {}; /** - * @type {?ol.source.Vector} + * @type {ol.source.Vector} * @private */ this.source_ = goog.isDef(options.source) ? options.source : null; /** - * @type {?ol.Collection.} + * @type {ol.Collection.} * @private */ this.features_ = goog.isDef(options.features) ? options.features : null;