forked from TrueCloudLab/frostfs-sdk-go
[#53] session: refactor missed Marshal
declarations
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
7627f8376a
commit
49a24e4b3e
2 changed files with 4 additions and 16 deletions
|
@ -115,12 +115,8 @@ func (x *ContainerContext) IsForSetEACL() bool {
|
|||
}
|
||||
|
||||
// Marshal marshals ContainerContext into a protobuf binary form.
|
||||
func (x *ContainerContext) Marshal(bs ...[]byte) ([]byte, error) {
|
||||
var buf []byte
|
||||
if len(bs) > 0 {
|
||||
buf = bs[0]
|
||||
}
|
||||
return x.ToV2().StableMarshal(buf)
|
||||
func (x *ContainerContext) Marshal() ([]byte, error) {
|
||||
return x.ToV2().StableMarshal(nil)
|
||||
}
|
||||
|
||||
// Unmarshal unmarshals protobuf binary representation of ContainerContext.
|
||||
|
|
|
@ -250,17 +250,9 @@ func GetContainerContext(t *Token) *ContainerContext {
|
|||
}
|
||||
|
||||
// Marshal marshals Token into a protobuf binary form.
|
||||
//
|
||||
// Buffer is allocated when the argument is empty.
|
||||
// Otherwise, the first buffer is used.
|
||||
func (t *Token) Marshal(bs ...[]byte) ([]byte, error) {
|
||||
var buf []byte
|
||||
if len(bs) > 0 {
|
||||
buf = bs[0]
|
||||
}
|
||||
|
||||
func (t *Token) Marshal() ([]byte, error) {
|
||||
return (*session.SessionToken)(t).
|
||||
StableMarshal(buf)
|
||||
StableMarshal(nil)
|
||||
}
|
||||
|
||||
// Unmarshal unmarshals protobuf binary representation of Token.
|
||||
|
|
Loading…
Reference in a new issue