We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3360d50 commit 4debd68Copy full SHA for 4debd68
1 file changed
src/main/java/top/rgb39/ecs/plugin/Events.java
@@ -5,8 +5,7 @@
5
import java.util.Collections;
6
import java.util.List;
7
import java.util.Objects;
8
-import java.util.concurrent.CopyOnWriteArrayList;
9
-
+import java.util.Vector;
10
import javax.annotation.Nullable;
11
12
import top.rgb39.ecs.annotation.Read;
@@ -18,7 +17,7 @@
18
17
19
public class Events implements Plugin, ParameterMatcher {
20
21
- private final List<Event> events = new CopyOnWriteArrayList<>();
+ private final List<Event> events = new Vector<>();
22
23
@Override
24
public void build(App app) {
0 commit comments