Skip to content

Commit

Permalink
Fix accidental inefficiency
Browse files Browse the repository at this point in the history
Bug: n/a
Test: n/a
Change-Id: I25f1b61e63fd4ec37ed49aed18dc7bf76eeddffb

AOSP: c290c7b3055c5754436cb050cae347b01998baa3
  • Loading branch information
Googler authored and LeFrosch committed Jan 13, 2025
1 parent fa69310 commit 405938a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ public BlazeBuildOutputs run(
.orElse(null);
ParsedBepOutput buildOutput = buildResultHelper.getBuildOutput(stringInterner);
context.output(PrintOutput.log("BEP outputs retrieved (%s).", StringUtilRt.formatFileSize(buildOutput.getBepBytesConsumed())));
return BlazeBuildOutputs.fromParsedBepOutput(
buildResult, buildResultHelper.getBuildOutput(stringInterner));
return BlazeBuildOutputs.fromParsedBepOutput(buildResult, buildOutput);
} catch (GetArtifactsException e) {
context.output(PrintOutput.log("Failed to get build outputs: " + e.getMessage()));
context.setHasError();
Expand Down

0 comments on commit 405938a

Please sign in to comment.