Make constructor public

Signed-off-by: Thomas Poignant <thomas.poignant@gofeatureflag.org>
This commit is contained in:
Thomas Poignant 2022-07-23 15:51:05 +02:00
parent af2776b286
commit 0a714fa637
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<>();