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 b2d28d4 commit b524e7fCopy full SHA for b524e7f
core-api/src/main/java/com/optimizely/ab/event/internal/payload/Snapshot.java
@@ -70,7 +70,9 @@ public boolean equals(Object o) {
70
if (activationTimestamp != null ?
71
!activationTimestamp.equals(snapshot.activationTimestamp) :
72
snapshot.activationTimestamp != null) return false;
73
- if (!decisions.equals(snapshot.decisions)) return false;
+ if (decisions != null ?
74
+ !decisions.equals(snapshot.decisions) :
75
+ snapshot.decisions != null) return false;
76
return events.equals(snapshot.events);
77
}
78
0 commit comments