Merge pull request #33 from thomaspoignant/fix-public-evaluationcontext-constructor

fix: EvaluationContext make constructor public
This commit is contained in:
Justin Abrahms 2022-07-23 14:02:58 -07:00 committed by GitHub
commit 1f4b6e0bf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public class EvaluationContext {
private final Map<String, Boolean> booleanAttributes; private final Map<String, Boolean> booleanAttributes;
final Map<String, String> jsonAttributes; final Map<String, String> jsonAttributes;
EvaluationContext() { public EvaluationContext() {
objMapper = new ObjectMapper(); objMapper = new ObjectMapper();
this.targetingKey = ""; this.targetingKey = "";
this.integerAttributes = new HashMap<>(); this.integerAttributes = new HashMap<>();