Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
code review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
simondale00 committed Jan 25, 2024
1 parent 0ddfb37 commit b6fd0cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/main/java/com/eppo/sdk/dto/AssignmentLogData.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class AssignmentLogData {
public String featureFlag;
public String allocation;
public String variation;
public String variationName;
public EppoValue variationValue;
public Date timestamp;
public String subject;
Expand All @@ -31,8 +32,9 @@ public AssignmentLogData(
this.experiment = experiment;
this.featureFlag = featureFlag;
this.allocation = allocation;
this.variationName = variationName;
this.variationValue = variationValue;
this.variation = variationName;
this.variation = variationValue.toString();
this.timestamp = new Date();
this.subject = subject;
this.subjectAttributes = subjectAttributes;
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/eppo/sdk/dto/Variation.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.eppo.sdk.dto;

import lombok.Data;
import lombok.EqualsAndHashCode;

/**
* Experiment's Variation Class
Expand Down

0 comments on commit b6fd0cb

Please sign in to comment.