Skip to content

Commit 42053e4

Browse files
update: remove unused parameter 'useCmab' from DecisionService method documentation
1 parent af210d8 commit 42053e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ public class DecisionService {
8585
* @param bucketer Base bucketer to allocate new users to an experiment.
8686
* @param errorHandler The error handler of the Optimizely client.
8787
* @param userProfileService UserProfileService implementation for storing user info.
88+
* @param cmabService Cmab Service for decision making.
8889
*/
8990
public DecisionService(@Nonnull Bucketer bucketer,
9091
@Nonnull ErrorHandler errorHandler,
@@ -200,6 +201,7 @@ public DecisionResponse<Variation> getVariation(@Nonnull Experiment experiment,
200201
* @param user The current OptimizelyUserContext
201202
* @param projectConfig The current projectConfig
202203
* @param options An array of decision options
204+
* @param useCmab Boolean to check if cmab service is to be used.
203205
* @return A {@link DecisionResponse} including the {@link Variation} that user is bucketed into (or null) and the decision reasons
204206
*/
205207
@Nonnull
@@ -258,7 +260,6 @@ public DecisionResponse<FeatureDecision> getVariationForFeature(@Nonnull Feature
258260
* @param user The current OptimizelyuserContext
259261
* @param projectConfig The current projectConfig
260262
* @param options An array of decision options
261-
* @param useCmab Boolean field that determines whether to use cmab service
262263
* @return A {@link DecisionResponse} including a {@link FeatureDecision} and the decision reasons
263264
*/
264265
@Nonnull

0 commit comments

Comments
 (0)