forked from TrueCloudLab/frostfs-api-go
[#335] linter: Sync receiver name for Tombstone
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
8c9e1504b8
commit
a0262d58b0
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ func NewTombstone() *Tombstone {
|
||||||
// ToV2 converts Tombstone to v2 Tombstone message.
|
// ToV2 converts Tombstone to v2 Tombstone message.
|
||||||
//
|
//
|
||||||
// Nil Tombstone converts to nil.
|
// Nil Tombstone converts to nil.
|
||||||
func (ts *Tombstone) ToV2() *tombstone.Tombstone {
|
func (t *Tombstone) ToV2() *tombstone.Tombstone {
|
||||||
return (*tombstone.Tombstone)(ts)
|
return (*tombstone.Tombstone)(t)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ExpirationEpoch return number of tombstone expiration epoch.
|
// ExpirationEpoch return number of tombstone expiration epoch.
|
||||||
|
|
Loading…
Reference in a new issue