Remove unneeded `make` in empty slice initialization.

This commit is contained in:
Julius Volz 2015-10-11 17:05:40 +02:00
parent e70cbd2045
commit 777a8ddd90
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ func (c *textFileCollector) Update(ch chan<- prometheus.Metric) (err error) {
func (c *textFileCollector) parseTextFiles() []*dto.MetricFamily {
error := 0.0
metricFamilies := make([]*dto.MetricFamily, 0)
var metricFamilies []*dto.MetricFamily
mtimes := map[string]time.Time{}
// Iterate over files and accumulate their metrics.