Skip to content

Commit fb665ea

Browse files
committed
clean up
1 parent e56dca7 commit fb665ea

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

android-sdk/src/main/java/com/optimizely/ab/android/sdk/OptimizelyUserContextAndroid.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ public OptimizelyUserContextAndroid(@NonNull Optimizely optimizely,
8484
super(optimizely, userId, attributes, forcedDecisionsMap, qualifiedSegments, shouldIdentifyUser);
8585
}
8686

87-
// ===========================================
87+
// ==================================================================
8888
// [SYNCHRONOUS DECIDE METHODS]
8989
// - "decideSync" methods skip async decision like cmab for backward compatibility.
90-
// ===========================================
90+
// ==================================================================
9191

9292
/**
9393
* Returns a decision result ({@link OptimizelyDecision}) for a given flag key and a user context, which contains all data required to deliver the flag.
@@ -187,9 +187,9 @@ public Map<String, OptimizelyDecision> decideAll() {
187187
return coreDecideAllSync(Collections.emptyList());
188188
}
189189

190-
// ===========================================
190+
// ==================================================================
191191
// [ASYNCHRONOUS DECIDE METHODS WITH CALLBACKS]
192-
// ===========================================
192+
// ==================================================================
193193

194194
/**
195195
* Returns a decision result asynchronously for a given flag key and a user context.
@@ -257,11 +257,11 @@ public void decideAllAsync(@NonNull OptimizelyDecisionsCallback callback) {
257257
coreDecideAllAsync(Collections.emptyList(), callback);
258258
}
259259

260-
// ===========================================
260+
// ==================================================================
261261
// [ASYNCHRONOUS DECIDE METHODS WITH BLOCKING CALLS]
262262
// - This will block the calling thread until a decision is returned.
263263
// - So this should be called in background thread only.
264-
// ===========================================
264+
// ==================================================================
265265

266266
/**
267267
* Returns a decision result ({@link OptimizelyDecision}) for a given flag key and a user context, which contains all data required to deliver the flag.
@@ -342,9 +342,9 @@ public Map<String, OptimizelyDecision> decideAllAsync() {
342342
return coreDecideAll(Collections.emptyList());
343343
}
344344

345-
// ===========================================
345+
// ==================================================================
346346
// Core Methods - All super calls centralized here for testability
347-
// ===========================================
347+
// ==================================================================
348348

349349
/**
350350
* Core delegation methods that encapsulate all java-sdk parent class method calls.

0 commit comments

Comments
 (0)