Implement AB6, Aufgabe 1+2

This commit is contained in:
2022-05-17 19:31:19 +02:00
parent b89fc15602
commit f801a331c2
6 changed files with 247 additions and 26 deletions

@ -103,10 +103,10 @@ public class BodyForceTreeMap {
*/
@Override
public String toString() {
return toString(root);
return (root != null) ? toString(root) : "";
}
private class Item {
private static class Item {
private final Body key;
private Vector3 value;
private Item parent;