Merge pull request #127 from piotrekmonko/fix_intermittent_errors

fixes intermittent error reporting
This commit is contained in:
Manfred Touron
2019-02-10 21:37:31 +01:00
committed by GitHub

View File

@@ -210,10 +210,8 @@ func (e *GenericTemplateBasedEncoder) Files() []*plugin_go.CodeGeneratorResponse
case f := <-resultChan:
files = append(files, f)
case err = <-errChan:
}
}
if err != nil {
panic(err)
}
}
return files
}