Skip to content

Commit

Permalink
Adding in unique fields update
Browse files Browse the repository at this point in the history
  • Loading branch information
avgAGB committed Feb 11, 2025
1 parent ff5e320 commit 3d54204
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public static UniqueFields from(String string) {
if (granularityList.isEmpty()) {
uniqueFields.put(field, UniqueGranularity.ALL);
} else {
String[] granularities = StringUtils.split(granularityList, Constants.COMMA);
String[] granularities = granularityList.split(Constants.COMMA);
for (String granularity : granularities) {
uniqueFields.put(field, parseGranularity(granularity));
}
Expand Down

0 comments on commit 3d54204

Please sign in to comment.