Skip to content

Commit

Permalink
Fix sonarqube
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzhaoyuan authored and alisman committed Dec 6, 2024
1 parent fbd3653 commit 9f7fb69
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ private static <T extends DataFilter> List<T> mergeDataFilters(List<T> filters)
for (T filter : filters) {
List<DataFilterValue> mergedValues = new ArrayList<>();

BigDecimal mergedStart = null, mergedEnd = null;
BigDecimal mergedStart = null;
BigDecimal mergedEnd = null;
for (DataFilterValue dataFilterValue : filter.getValues()) {
// leave non-numerical values as they are
if (dataFilterValue.getValue() != null) {
Expand Down

0 comments on commit 9f7fb69

Please sign in to comment.