Gets rid of zero-value initializer.

This commit is contained in:
James Phillips 2017-04-28 08:52:50 -07:00
parent 23035c15bf
commit 5007608060
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11

View File

@ -60,7 +60,6 @@ func NewTombstoneGC(ttl, granularity time.Duration) (*TombstoneGC, error) {
t := &TombstoneGC{
ttl: ttl,
granularity: granularity,
enabled: false,
expires: make(map[time.Time]*expireInterval),
expireCh: make(chan uint64, 1),
}