Commit 504844ee authored by Riegel's avatar Riegel
Browse files

Fix: Add missing super call

parent 481b1429
...@@ -183,6 +183,7 @@ public class ConcretePolygon extends Polygon { ...@@ -183,6 +183,7 @@ public class ConcretePolygon extends Polygon {
*/ */
@Override @Override
public void accept(Check c) { public void accept(Check c) {
super.accept(c);
if (c.canExecute(this)) { if (c.canExecute(this)) {
c.check(this); c.check(this);
} }
......
Supports Markdown
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