Skip to content

Commit

Permalink
fix: magic number VObjectService
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Oct 8, 2023
1 parent f3e481d commit 302effe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ private void buildFilterNumeric(int headerIndex, ArcPreparedStatementBuilder s,
s.append(expressionOR);
}
// on retire les dernier OR
s.setLength(s.length() - 3);
s.setLength(s.length() - expressionOR.length());
s.append(expressionAND);
}

Expand Down

0 comments on commit 302effe

Please sign in to comment.