Add HTML export action

This commit is contained in:
2025-02-19 11:45:32 +01:00
parent 1b0284cb4d
commit 55e74b5e4b
3 changed files with 20 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ import java.util.stream.Collectors;
public class SCollection extends AbstractShape implements Streamable<Shape> {
private final static Logger logger = LoggerFactory.getLogger(SCollection.class);
private List<Shape> children;
private final List<Shape> children;
private SCollection(Shape... shapes) {
this.children = new ArrayList<>(List.of(shapes));