diff --git a/src/ol/Overlay.js b/src/ol/Overlay.js index eea30b2386..347e0b0f92 100644 --- a/src/ol/Overlay.js +++ b/src/ol/Overlay.js @@ -592,7 +592,6 @@ Overlay.prototype.updateRenderedPosition = function(pixel, mapSize) { /** * returns the options this Overlay has been created with - * @public * @return {module:ol/Overlay~OverlayOptions} overlay options */ Overlay.prototype.getOptions = function() { diff --git a/src/ol/format/filter/Bbox.js b/src/ol/format/filter/Bbox.js index 49f66dccd6..32743495f7 100644 --- a/src/ol/format/filter/Bbox.js +++ b/src/ol/format/filter/Bbox.js @@ -22,19 +22,16 @@ const Bbox = function(geometryName, extent, opt_srsName) { Filter.call(this, 'BBOX'); /** - * @public * @type {!string} */ this.geometryName = geometryName; /** - * @public * @type {module:ol/extent~Extent} */ this.extent = extent; /** - * @public * @type {string|undefined} */ this.srsName = opt_srsName; diff --git a/src/ol/format/filter/Comparison.js b/src/ol/format/filter/Comparison.js index 0ada715ad1..df8d968268 100644 --- a/src/ol/format/filter/Comparison.js +++ b/src/ol/format/filter/Comparison.js @@ -20,7 +20,6 @@ const Comparison = function(tagName, propertyName) { Filter.call(this, tagName); /** - * @public * @type {!string} */ this.propertyName = propertyName; diff --git a/src/ol/format/filter/ComparisonBinary.js b/src/ol/format/filter/ComparisonBinary.js index bae55f060c..3b4ee26dee 100644 --- a/src/ol/format/filter/ComparisonBinary.js +++ b/src/ol/format/filter/ComparisonBinary.js @@ -22,13 +22,11 @@ const ComparisonBinary = function(tagName, propertyName, expression, opt_matchCa Comparison.call(this, tagName, propertyName); /** - * @public * @type {!(string|number)} */ this.expression = expression; /** - * @public * @type {boolean|undefined} */ this.matchCase = opt_matchCase; diff --git a/src/ol/format/filter/During.js b/src/ol/format/filter/During.js index 337ef0e906..8233044fc0 100644 --- a/src/ol/format/filter/During.js +++ b/src/ol/format/filter/During.js @@ -19,13 +19,11 @@ const During = function(propertyName, begin, end) { Comparison.call(this, 'During', propertyName); /** - * @public * @type {!string} */ this.begin = begin; /** - * @public * @type {!string} */ this.end = end; diff --git a/src/ol/format/filter/IsBetween.js b/src/ol/format/filter/IsBetween.js index 0c47a1ec33..1742cd3262 100644 --- a/src/ol/format/filter/IsBetween.js +++ b/src/ol/format/filter/IsBetween.js @@ -19,13 +19,11 @@ const IsBetween = function(propertyName, lowerBoundary, upperBoundary) { Comparison.call(this, 'PropertyIsBetween', propertyName); /** - * @public * @type {!number} */ this.lowerBoundary = lowerBoundary; /** - * @public * @type {!number} */ this.upperBoundary = upperBoundary; diff --git a/src/ol/format/filter/IsLike.js b/src/ol/format/filter/IsLike.js index e16f1f9b1f..fca5d6cc46 100644 --- a/src/ol/format/filter/IsLike.js +++ b/src/ol/format/filter/IsLike.js @@ -25,31 +25,26 @@ const IsLike = function(propertyName, pattern, opt_wildCard, opt_singleChar, opt Comparison.call(this, 'PropertyIsLike', propertyName); /** - * @public * @type {!string} */ this.pattern = pattern; /** - * @public * @type {!string} */ this.wildCard = (opt_wildCard !== undefined) ? opt_wildCard : '*'; /** - * @public * @type {!string} */ this.singleChar = (opt_singleChar !== undefined) ? opt_singleChar : '.'; /** - * @public * @type {!string} */ this.escapeChar = (opt_escapeChar !== undefined) ? opt_escapeChar : '!'; /** - * @public * @type {boolean|undefined} */ this.matchCase = opt_matchCase; diff --git a/src/ol/format/filter/LogicalNary.js b/src/ol/format/filter/LogicalNary.js index 51d40c2c4e..dabc12968f 100644 --- a/src/ol/format/filter/LogicalNary.js +++ b/src/ol/format/filter/LogicalNary.js @@ -21,7 +21,6 @@ const LogicalNary = function(tagName, conditions) { Filter.call(this, tagName); /** - * @public * @type {Array.} */ this.conditions = Array.prototype.slice.call(arguments, 1); diff --git a/src/ol/format/filter/Not.js b/src/ol/format/filter/Not.js index 74f4c6f156..f927705f5b 100644 --- a/src/ol/format/filter/Not.js +++ b/src/ol/format/filter/Not.js @@ -18,7 +18,6 @@ const Not = function(condition) { Filter.call(this, 'Not'); /** - * @public * @type {!ol.format.filter.Filter} */ this.condition = condition; diff --git a/src/ol/format/filter/Spatial.js b/src/ol/format/filter/Spatial.js index a170f67594..8d2d01ba6b 100644 --- a/src/ol/format/filter/Spatial.js +++ b/src/ol/format/filter/Spatial.js @@ -24,19 +24,16 @@ const Spatial = function(tagName, geometryName, geometry, opt_srsName) { Filter.call(this, tagName); /** - * @public * @type {!string} */ this.geometryName = geometryName || 'the_geom'; /** - * @public * @type {module:ol/geom/Geometry~Geometry} */ this.geometry = geometry; /** - * @public * @type {string|undefined} */ this.srsName = opt_srsName;