add missing semicolon. Non functional change.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@10429 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Frédéric Junod
2010-06-28 08:41:43 +00:00
parent d895af91a5
commit 0db8f59ae3
+2 -2
View File
@@ -202,7 +202,7 @@ OpenLayers.Layer.WMTS = OpenLayers.Class(OpenLayers.Layer.Grid, {
var len = this.matrixIds.length; var len = this.matrixIds.length;
if (len && typeof this.matrixIds[0] === "string") { if (len && typeof this.matrixIds[0] === "string") {
var ids = this.matrixIds; var ids = this.matrixIds;
this.matrixIds = new Array(len) this.matrixIds = new Array(len);
for (var i=0; i<len; ++i) { for (var i=0; i<len; ++i) {
this.matrixIds[i] = {identifier: ids[i]}; this.matrixIds[i] = {identifier: ids[i]};
} }
@@ -343,7 +343,7 @@ OpenLayers.Layer.WMTS = OpenLayers.Class(OpenLayers.Layer.Grid, {
path = path + this.matrixSet + "/" + matrixId + "/" + row + "/" + col + "." + this.formatSuffix; path = path + this.matrixSet + "/" + matrixId + "/" + row + "/" + col + "." + this.formatSuffix;
if (this.url instanceof Array) { if (this.url instanceof Array) {
url = this.selectUrl(path, url) url = this.selectUrl(path, url);
} else { } else {
url = this.url; url = this.url;
} }