gtr: Remove unnecessary TODO

There's no need (yet) to check if output is potentially a build error,
as build errors are currently handled separately by the parser/gotest
package.
This commit is contained in:
Joël Stemmer 2022-03-13 15:07:50 +00:00
parent a77bfe0f1c
commit 9aa9bd94d8

View File

@ -218,7 +218,6 @@ func (b *ReportBuilder) Coverage(pct float64, packages []string) {
// AppendOutput appends the given line to the currently active context. If no
// active context exists, the output is assumed to belong to the package.
func (b *ReportBuilder) AppendOutput(line string) {
// TODO(jstemmer): check if output is potentially a build error
if b.lastId <= 0 {
b.output = append(b.output, line)
return