We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25736c9 commit b391ae0Copy full SHA for b391ae0
src/main/java/app/multiplayer/session_recorder/type/Session.java
@@ -2,6 +2,7 @@
2
3
import java.util.List;
4
import java.util.Map;
5
+import java.util.ArrayList;
6
7
public class Session {
8
private String id;
@@ -11,7 +12,7 @@ public class Session {
11
12
private Map<String, Object> resourceAttributes;
13
private Map<String, Object> sessionAttributes;
14
- private List<Tag> tags;
15
+ private List<Tag> tags = new ArrayList<>();
16
17
// --- Getters and Setters ---
18
0 commit comments