Skip to content

Commit

Permalink
Minor variable renaming for readability.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 400676311
  • Loading branch information
joeleba authored and copybara-github committed Oct 4, 2021
1 parent fad21da commit d2f2720
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2357,8 +2357,8 @@ protected abstract void invalidateFilesUnderPathForTestingImpl(
/** Configures a given set of configured targets. */
EvaluationResult<ActionLookupValue> configureTargets(
ExtendedEventHandler eventHandler,
List<ConfiguredTargetKey> values,
ImmutableList<TopLevelAspectsKey> aspectKeys,
List<ConfiguredTargetKey> configuredTargetKeys,
ImmutableList<TopLevelAspectsKey> topLevelAspectKeys,
boolean keepGoing,
int numThreads,
int cpuHeavySkyKeysThreadPoolSize)
Expand All @@ -2376,7 +2376,8 @@ EvaluationResult<ActionLookupValue> configureTargets(
.setEventHandler(eventHandler)
.build();
EvaluationResult<ActionLookupValue> result =
buildDriver.evaluate(Iterables.concat(values, aspectKeys), evaluationContext);
buildDriver.evaluate(
Iterables.concat(configuredTargetKeys, topLevelAspectKeys), evaluationContext);
// Get rid of any memory retained by the cache -- all loading is done.
perBuildSyscallCache.clear();
return result;
Expand Down

0 comments on commit d2f2720

Please sign in to comment.