Skip to content

Commit 5c9e3aa

Browse files
author
David Baum
committed
remove old todos
1 parent f17c0c1 commit 5c9e3aa

3 files changed

Lines changed: 1 addition & 4 deletions

File tree

generator2/org.getaviz.generator/src/main/java/org/getaviz/generator/city/m2m/City2City.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ private void setBuildingAttributesFloors(Node building, int methodCounter, int d
275275
double length;
276276
double height;
277277
if (dataCounter < 2) { // pko 2016
278-
width = 2; // TODO in settings datei aufnehmen
278+
width = 2;
279279
length = 2;
280280
} else {
281281
width = Math.ceil(dataCounter / 4.0) + 1; // pko 2016

generator2/org.getaviz.generator/src/main/java/org/getaviz/generator/rd/m2m/Calculator.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ class Calculator {
99
static void calculate(final List<CircleWithInnerCircles> circleList) {
1010

1111
if (circleList == null || circleList.size() == 0) {
12-
// TODO throw exception
1312
return;
1413
}
1514

1615
Collections.sort(circleList);
17-
// TODO order the circles
1816
int m = 0;
1917

2018
// angle is the angle between m and n

generator2/org.getaviz.generator/src/main/java/org/getaviz/generator/rd/m2m/RDLayout.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ private static void transformPositionOfInnerCircles(Circle outerCircle,
6666
}
6767
}
6868

69-
// TODO optimize
7069
private static void calculateRadiusForOuterCircles(CircleWithInnerCircles outerCircle, List<CircleWithInnerCircles> innerCircles) {
7170

7271
CoordinateList coordinates = new CoordinateList();

0 commit comments

Comments
 (0)