Skip to content

Commit

Permalink
Removing unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
robertcsakany committed Feb 21, 2025
1 parent 7666bb0 commit fc06fb6
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ public JudoRuntimeFixture() {}

QueryFactory queryFactory;

Boolean markSelectedRangeItems = false;

private void initQueryFactory() {

coercer = new DefaultCoercer();
Expand Down Expand Up @@ -144,8 +142,7 @@ public void init(Module module, Object injectModulesTo) {
.injectModulesTo(injectModulesTo)
.judoModelLoader(modelHolder)
.extendableCoercer(coercer)
.queryFactory(queryFactory)
.rdbmsDaoMarkSelectedRangeItems(markSelectedRangeItems);
.queryFactory(queryFactory);

Module modules = Modules.combine(
module,
Expand Down

0 comments on commit fc06fb6

Please sign in to comment.