Remove unnecessary public jsdoc annotation

This commit is contained in:
Frederic Junod
2018-03-19 08:44:34 +01:00
parent 51f25486ec
commit f8d94bb998
10 changed files with 0 additions and 21 deletions
-1
View File
@@ -592,7 +592,6 @@ Overlay.prototype.updateRenderedPosition = function(pixel, mapSize) {
/** /**
* returns the options this Overlay has been created with * returns the options this Overlay has been created with
* @public
* @return {module:ol/Overlay~OverlayOptions} overlay options * @return {module:ol/Overlay~OverlayOptions} overlay options
*/ */
Overlay.prototype.getOptions = function() { Overlay.prototype.getOptions = function() {
-3
View File
@@ -22,19 +22,16 @@ const Bbox = function(geometryName, extent, opt_srsName) {
Filter.call(this, 'BBOX'); Filter.call(this, 'BBOX');
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.geometryName = geometryName; this.geometryName = geometryName;
/** /**
* @public
* @type {module:ol/extent~Extent} * @type {module:ol/extent~Extent}
*/ */
this.extent = extent; this.extent = extent;
/** /**
* @public
* @type {string|undefined} * @type {string|undefined}
*/ */
this.srsName = opt_srsName; this.srsName = opt_srsName;
-1
View File
@@ -20,7 +20,6 @@ const Comparison = function(tagName, propertyName) {
Filter.call(this, tagName); Filter.call(this, tagName);
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.propertyName = propertyName; this.propertyName = propertyName;
-2
View File
@@ -22,13 +22,11 @@ const ComparisonBinary = function(tagName, propertyName, expression, opt_matchCa
Comparison.call(this, tagName, propertyName); Comparison.call(this, tagName, propertyName);
/** /**
* @public
* @type {!(string|number)} * @type {!(string|number)}
*/ */
this.expression = expression; this.expression = expression;
/** /**
* @public
* @type {boolean|undefined} * @type {boolean|undefined}
*/ */
this.matchCase = opt_matchCase; this.matchCase = opt_matchCase;
-2
View File
@@ -19,13 +19,11 @@ const During = function(propertyName, begin, end) {
Comparison.call(this, 'During', propertyName); Comparison.call(this, 'During', propertyName);
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.begin = begin; this.begin = begin;
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.end = end; this.end = end;
-2
View File
@@ -19,13 +19,11 @@ const IsBetween = function(propertyName, lowerBoundary, upperBoundary) {
Comparison.call(this, 'PropertyIsBetween', propertyName); Comparison.call(this, 'PropertyIsBetween', propertyName);
/** /**
* @public
* @type {!number} * @type {!number}
*/ */
this.lowerBoundary = lowerBoundary; this.lowerBoundary = lowerBoundary;
/** /**
* @public
* @type {!number} * @type {!number}
*/ */
this.upperBoundary = upperBoundary; this.upperBoundary = upperBoundary;
-5
View File
@@ -25,31 +25,26 @@ const IsLike = function(propertyName, pattern, opt_wildCard, opt_singleChar, opt
Comparison.call(this, 'PropertyIsLike', propertyName); Comparison.call(this, 'PropertyIsLike', propertyName);
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.pattern = pattern; this.pattern = pattern;
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.wildCard = (opt_wildCard !== undefined) ? opt_wildCard : '*'; this.wildCard = (opt_wildCard !== undefined) ? opt_wildCard : '*';
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.singleChar = (opt_singleChar !== undefined) ? opt_singleChar : '.'; this.singleChar = (opt_singleChar !== undefined) ? opt_singleChar : '.';
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.escapeChar = (opt_escapeChar !== undefined) ? opt_escapeChar : '!'; this.escapeChar = (opt_escapeChar !== undefined) ? opt_escapeChar : '!';
/** /**
* @public
* @type {boolean|undefined} * @type {boolean|undefined}
*/ */
this.matchCase = opt_matchCase; this.matchCase = opt_matchCase;
-1
View File
@@ -21,7 +21,6 @@ const LogicalNary = function(tagName, conditions) {
Filter.call(this, tagName); Filter.call(this, tagName);
/** /**
* @public
* @type {Array.<ol.format.filter.Filter>} * @type {Array.<ol.format.filter.Filter>}
*/ */
this.conditions = Array.prototype.slice.call(arguments, 1); this.conditions = Array.prototype.slice.call(arguments, 1);
-1
View File
@@ -18,7 +18,6 @@ const Not = function(condition) {
Filter.call(this, 'Not'); Filter.call(this, 'Not');
/** /**
* @public
* @type {!ol.format.filter.Filter} * @type {!ol.format.filter.Filter}
*/ */
this.condition = condition; this.condition = condition;
-3
View File
@@ -24,19 +24,16 @@ const Spatial = function(tagName, geometryName, geometry, opt_srsName) {
Filter.call(this, tagName); Filter.call(this, tagName);
/** /**
* @public
* @type {!string} * @type {!string}
*/ */
this.geometryName = geometryName || 'the_geom'; this.geometryName = geometryName || 'the_geom';
/** /**
* @public
* @type {module:ol/geom/Geometry~Geometry} * @type {module:ol/geom/Geometry~Geometry}
*/ */
this.geometry = geometry; this.geometry = geometry;
/** /**
* @public
* @type {string|undefined} * @type {string|undefined}
*/ */
this.srsName = opt_srsName; this.srsName = opt_srsName;