From c952ba7de57e2960a7dbdb5a0ad0774f1c8a42d5 Mon Sep 17 00:00:00 2001 From: Ulf Adams Date: Thu, 28 Oct 2021 06:38:14 -0700 Subject: [PATCH] Fix typo: anamoly -> anomaly Change-Id: I197b71a28879264e0631798522dd07a8f358835a Closes #14134. Change-Id: I197b71a28879264e0631798522dd07a8f358835a PiperOrigin-RevId: 406125820 --- .../build/lib/buildeventstream/BuildCompletingEvent.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/google/devtools/build/lib/buildeventstream/BuildCompletingEvent.java b/src/main/java/com/google/devtools/build/lib/buildeventstream/BuildCompletingEvent.java index 39d948a8f156c3..e222e296efbf5f 100644 --- a/src/main/java/com/google/devtools/build/lib/buildeventstream/BuildCompletingEvent.java +++ b/src/main/java/com/google/devtools/build/lib/buildeventstream/BuildCompletingEvent.java @@ -72,7 +72,7 @@ public BuildEventStreamProtos.BuildEvent asStreamProto(BuildEventContext convert .setCode(exitCode.getNumericExitCode()) .build(); - BuildEventStreamProtos.BuildFinished.AnomalyReport protoAnamolyReport = + BuildEventStreamProtos.BuildFinished.AnomalyReport protoAnomalyReport = BuildEventStreamProtos.BuildFinished.AnomalyReport.newBuilder() .setWasSuspended(wasSuspended) .build(); @@ -83,7 +83,7 @@ public BuildEventStreamProtos.BuildEvent asStreamProto(BuildEventContext convert .setExitCode(protoExitCode) .setFinishTime(Timestamps.fromMillis(finishTimeMillis)) .setFinishTimeMillis(finishTimeMillis) - .setAnomalyReport(protoAnamolyReport) + .setAnomalyReport(protoAnomalyReport) .build(); return GenericBuildEvent.protoChaining(this).setFinished(finished).build(); }