Remove unecessary semicolon

This commit is contained in:
Nelson A. de Oliveira 2013-07-31 15:24:57 -03:00
parent 50207ec316
commit ffaaef6610

View file

@ -18,9 +18,9 @@ public class QuadTree<T> {
bounds = new QuadRect(b.left, b.top, b.right, b.bottom);
children = new Node[4];
}
};
}
private float ratio;
private float ratio;
private int maxDepth;
private Node<T> root;