Line was too long after previous change
This commit is contained in:
@@ -128,8 +128,8 @@ ol.structs.RTreeNode_.prototype.divide = function() {
|
|||||||
for (var i = 0; i < numChildren; ++i) {
|
for (var i = 0; i < numChildren; ++i) {
|
||||||
child = this.children[i];
|
child = this.children[i];
|
||||||
if (i % half === 0) {
|
if (i % half === 0) {
|
||||||
node = new ol.structs.RTreeNode_(child.minX, child.minY, child.maxX, child.maxY,
|
node = new ol.structs.RTreeNode_(child.minX, child.minY,
|
||||||
this, this.level + 1);
|
child.maxX, child.maxY, this, this.level + 1);
|
||||||
goog.object.extend(this.types, node.types);
|
goog.object.extend(this.types, node.types);
|
||||||
this.children.push(node);
|
this.children.push(node);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user