Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[refactor] Restructure RangeIndexAttributeCondition #5259

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
[refactor] make fields final in ComplexRangeIndexConfigElement
  • Loading branch information
line-o committed Mar 28, 2024
commit 51812e1d62ba3dcfe92c918fd4a32c66328b8545
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class ComplexRangeIndexConfigElement extends RangeIndexConfigElement {

private static final Logger LOG = LogManager.getLogger(ComplexRangeIndexConfigElement.class);

private Map<String, RangeIndexConfigField> fields = new HashMap<>();
private final Map<String, RangeIndexConfigField> fields = new HashMap<>();


protected ArrayList<RangeIndexConfigCondition> conditions = new ArrayList<>();
Expand Down
Loading