Skip to content

Commit

Permalink
German Open improvements
Browse files Browse the repository at this point in the history
See merge request main/Sumatra!1824

sumatra-commit: ff00a7d6bf6251cfccc0494c60dba754a140e414
  • Loading branch information
g3force authored and TIGERs GitLab committed Apr 26, 2024
1 parent e869042 commit 802f18e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CopyOnWriteArrayList;


/**
Expand Down Expand Up @@ -169,7 +170,7 @@ private ShapeLayer()
public ShapeLayer(final IShapeLayerIdentifier identifier)
{
this.identifier = identifier;
shapes = new ArrayList<>();
shapes = new CopyOnWriteArrayList<>();
}


Expand Down

0 comments on commit 802f18e

Please sign in to comment.