diff --git a/forge-core/src/main/java/forge/util/collect/FCollection.java b/forge-core/src/main/java/forge/util/collect/FCollection.java index 14430057881..ad66d0516ca 100644 --- a/forge-core/src/main/java/forge/util/collect/FCollection.java +++ b/forge-core/src/main/java/forge/util/collect/FCollection.java @@ -43,12 +43,12 @@ public class FCollection implements List, /*Set,*/ FCollectionView, /** * The {@link Set} representation of this collection. */ - private final Set set = Collections.synchronizedSet(new HashSet<>()); + private final Set set = new HashSet<>(); /** * The {@link List} representation of this collection. */ - private final List list = Collections.synchronizedList(new ArrayList<>()); + private final List list = new ArrayList<>(); /** * Create an empty {@link FCollection}.