Skip to content

Commit

Permalink
chore(simulator): remove unnecessary assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
bbortt committed Jan 26, 2025
1 parent 6bb3d7e commit b446096
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ public Page<ScenarioExecution> findByCriteria(ScenarioExecutionCriteria criteria
return Page.empty(page);
}

var countSpec = withIdIn(scenarioExecutionIds).and(specification);
var fetchSpec = countSpec.and(withResultDetailsConfiguration(resultDetailsConfiguration));
var fetchSpec = withIdIn(scenarioExecutionIds)
.and(withResultDetailsConfiguration(resultDetailsConfiguration));

var scenarioExecutions = selectAll(
ScenarioExecution.class,
Expand Down

0 comments on commit b446096

Please sign in to comment.