Commit 2384c84d authored by Matthias Betz's avatar Matthias Betz
Browse files

fixed a bug where subsequent checks would not clear previous check results in...

fixed a bug where subsequent checks would not clear previous check results in building installations
parent f603a79e
Pipeline #1998 canceled with stage
......@@ -98,7 +98,7 @@ public class BuildingInstallation extends CityObject {
@Override
public void clearAllContainedCheckResults() {
super.clearCheckResults();
super.clearAllContainedCheckResults();
for (BoundarySurface bs : boundarySurfaces) {
bs.clearAllContainedCheckResults();
}
......
......@@ -124,7 +124,7 @@ public class LinkedPolygon extends Polygon {
@Override
public void clearCheckResults() {
// linked polygons don't have check results
poly.clearCheckResults();
}
@Override
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment