Minor fixes

This commit is contained in:
Leonardo
2021-07-19 17:00:40 +02:00
parent 98586d6af9
commit 0fc4c5532b
@@ -361,8 +361,6 @@ public class LodQuadTree {
if(!isThereAnyChild() || targetLevel == lodNode.level){
if (this.lodNode.getComplexity().compareTo(complexityToGenerate) <= 0 ) {
nodeList.add(new AbstractMap.SimpleEntry<LodQuadTreeNode, Integer>(this.lodNode, min));
}else{
System.out.println(toString());
}
}else {
for (int NS = 0; NS <= 1; NS++) {