This is an automated email from the ASF dual-hosted git repository. abeizn pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 6f47a5240dd99b2bbae3b604372768e25fa4753e Author: xgdyp <[email protected]> AuthorDate: Fri Jul 22 16:52:16 2022 +0800 fix: update csv.go format --- plugins/gitextractor/store/csv.go | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/gitextractor/store/csv.go b/plugins/gitextractor/store/csv.go index 52820c7b..df46ee4e 100644 --- a/plugins/gitextractor/store/csv.go +++ b/plugins/gitextractor/store/csv.go @@ -132,6 +132,7 @@ func (c *CsvStore) Refs(ref *code.Ref) error { func (c *CsvStore) CommitFiles(file *code.CommitFile) error { return c.commitFileWriter.Write(file) } + func (c *CsvStore) CommitFileComponents(commitFileComponent *code.CommitFileComponent) error { return c.commitFileWriter.Write(commitFileComponent) }
