Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
refactor(analyzer) resolve gosimple warning
Browse files Browse the repository at this point in the history
  • Loading branch information
masahiro331 committed Oct 23, 2021
1 parent 4599011 commit 693e12f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions analyzer/analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,7 @@ func (r *AnalysisResult) Merge(new *AnalysisResult) {
r.Applications = append(r.Applications, new.Applications...)
}

for _, m := range new.Configs {
r.Configs = append(r.Configs, m)
}
r.Configs = append(r.Configs, new.Configs...)

r.SystemInstalledFiles = append(r.SystemInstalledFiles, new.SystemInstalledFiles...)
}
Expand Down

0 comments on commit 693e12f

Please sign in to comment.