Skip to content

Commit 2eb2fd2

Browse files
Fix indenting from auto-commit
1 parent 39a9ae1 commit 2eb2fd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core-api/src/main/java/com/optimizely/ab/OptimizelyUserContext.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ public OptimizelyUserContext(@Nonnull Optimizely optimizely,
6464
} else {
6565
this.attributes = Collections.synchronizedMap(new HashMap<>());
6666
}
67-
if (forcedDecisionMap != null) {
68-
this.forcedDecisionsMap = new ConcurrentHashMap<>(forcedDecisionMap)
69-
}
67+
if (forcedDecisionsMap != null) {
68+
this.forcedDecisionsMap = new ConcurrentHashMap<>(forcedDecisionsMap);
69+
}
7070
}
7171

7272
public OptimizelyUserContext(@Nonnull Optimizely optimizely, @Nonnull String userId) {

0 commit comments

Comments
 (0)