Skip to content

Commit

Permalink
[7.0.0] Remove RunfilesSupplier.getManifest(). (bazelbuild#20357)
Browse files Browse the repository at this point in the history
It appears to be always empty.

RELNOTES: None.
PiperOrigin-RevId: 585627763
Change-Id: I7f39896c7f3a4ffb1040211265793b7f64d8d64d

Co-authored-by: Googler <[email protected]>
  • Loading branch information
2 people authored and bozaro committed Jan 10, 2024
1 parent d798ebd commit 663beb6
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,14 @@ private ActionSpawn(
parent.getRunfilesSupplier(),
parent,
parent.resourceSetOrBuilder);
this.inputs = getNonFilesetInputs(inputs).addAll(additionalInputs).build();
NestedSetBuilder<ActionInput> inputsBuilder = NestedSetBuilder.stableOrder();
for (Artifact input : inputs.toList()) {
if (!input.isFileset()) {
inputsBuilder.add(input);
}
}
inputsBuilder.addAll(additionalInputs);
this.inputs = inputsBuilder.build();
this.filesetMappings = filesetMappings;
this.pathMapper = pathMapper;

Expand Down

0 comments on commit 663beb6

Please sign in to comment.