commit | c952ba7de57e2960a7dbdb5a0ad0774f1c8a42d5 | [log] [tgz] |
---|---|---|
author | Ulf Adams <ulf@engflow.com> | Thu Oct 28 06:38:14 2021 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Oct 28 06:39:58 2021 -0700 |
tree | 6bd7f6db97c090a0f0d7902fd1f0e8679b1c69f7 | |
parent | 41881c0d734a2c37cb49faa61d279691dd406e8b [diff] |
Fix typo: anamoly -> anomaly Change-Id: I197b71a28879264e0631798522dd07a8f358835a Closes #14134. Change-Id: I197b71a28879264e0631798522dd07a8f358835a PiperOrigin-RevId: 406125820
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 39d948a..e222e29 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 @@ .setCode(exitCode.getNumericExitCode()) .build(); - BuildEventStreamProtos.BuildFinished.AnomalyReport protoAnamolyReport = + BuildEventStreamProtos.BuildFinished.AnomalyReport protoAnomalyReport = BuildEventStreamProtos.BuildFinished.AnomalyReport.newBuilder() .setWasSuspended(wasSuspended) .build(); @@ -83,7 +83,7 @@ .setExitCode(protoExitCode) .setFinishTime(Timestamps.fromMillis(finishTimeMillis)) .setFinishTimeMillis(finishTimeMillis) - .setAnomalyReport(protoAnamolyReport) + .setAnomalyReport(protoAnomalyReport) .build(); return GenericBuildEvent.protoChaining(this).setFinished(finished).build(); }