Skip to content

Commit

Permalink
Line was too long after previous change
Browse files Browse the repository at this point in the history
  • Loading branch information
ahocevar committed Mar 12, 2013
1 parent fad036a commit 15375df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ol/structs/rtree.js
Expand Up @@ -128,8 +128,8 @@ ol.structs.RTreeNode_.prototype.divide = function() {
for (var i = 0; i < numChildren; ++i) {
child = this.children[i];
if (i % half === 0) {
node = new ol.structs.RTreeNode_(child.minX, child.minY, child.maxX, child.maxY,
this, this.level + 1);
node = new ol.structs.RTreeNode_(child.minX, child.minY,
child.maxX, child.maxY, this, this.level + 1);
goog.object.extend(this.types, node.types);
this.children.push(node);
}
Expand Down

0 comments on commit 15375df

Please sign in to comment.