Updated LOG message;

This commit is contained in:
Arkadiusz Hypki 2023-03-28 15:50:03 +02:00
parent 578eace71c
commit 8e628a9c72

View File

@ -18,7 +18,7 @@ public abstract class Figure {
@Override @Override
public String toString() { public String toString() {
return getName() + " with ID = " + getId() return getName() + " with id = " + getId()
+ " has area " + computeArea(); + " has area " + computeArea();
} }