Remove some unnecessary parentheses

This commit is contained in:
Tom Payne
2012-07-22 22:37:26 +02:00
parent 269bd9387e
commit 58bd2182a6
5 changed files with 15 additions and 17 deletions

View File

@@ -134,7 +134,7 @@ ol.Array.prototype.getAt = function(index) {
* @return {number} Length.
*/
ol.Array.prototype.getLength = function() {
return /** @type {number} */ (this.get(ol.ArrayProperty.LENGTH));
return /** @type {number} */ this.get(ol.ArrayProperty.LENGTH);
};