Skip to content

Commit c17e2a6

Browse files
fix(core-api): update Experiment import to ExperimentCore in FeatureDecision class
1 parent 524fc9f commit c17e2a6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

core-api/src/main/java/com/optimizely/ab/bucketing/FeatureDecision.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@
1717

1818
import javax.annotation.Nullable;
1919

20-
import com.optimizely.ab.config.Experiment;
2120
import com.optimizely.ab.config.ExperimentCore;
2221
import com.optimizely.ab.config.Variation;
2322

2423
public class FeatureDecision {
2524
/**
26-
* The {@link Experiment} the Feature is associated with.
25+
* The {@link ExperimentCore} the Feature is associated with.
2726
*/
2827
@Nullable
2928
public ExperimentCore experiment;
@@ -60,7 +59,7 @@ public String toString() {
6059
/**
6160
* Initialize a FeatureDecision object.
6261
*
63-
* @param experiment The {@link Experiment} the Feature is associated with.
62+
* @param experiment The {@link ExperimentCore} the Feature is associated with.
6463
* @param variation The {@link Variation} the user was bucketed into.
6564
* @param decisionSource The source of the variation.
6665
*/

0 commit comments

Comments
 (0)