Gets rid of zero-value initializer.

This commit is contained in:
James Phillips 2017-04-28 08:52:50 -07:00
parent 77b803c12b
commit 9ead18dbbb
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11
1 changed files with 0 additions and 1 deletions

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),
}