Skip to content

Commit

Permalink
Return the obfuscated data
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Jul 12, 2023
1 parent 845b620 commit 4d22d1e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -586,12 +586,12 @@ protected String processCategoricalCrossCounts(String categoricalEntityString, S
if (aggregateCount.isPresent()) {
value.put(innerKey, aggregateCount.get());
} else {
value.put(innerKey, randomize(innerValue.toString(), generatedVariance) + " \u00B1" + variance);
value.put(innerKey, randomize(innerValue.toString(), generatedVariance));
}
});
});

return categoricalEntityString;
return objectMapper.writeValueAsString(categoricalCrossCount);
}

/**
Expand Down

0 comments on commit 4d22d1e

Please sign in to comment.