MM-30823: Change to idiomatic receiver names for model.PushResponse (#16348)

JIRA Ticket - https://mattermost.atlassian.net/browse/MM-30823

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
Deep Baldha
2020-11-24 10:52:59 +05:30
коммит произвёл GitHub
родитель 71d975e4bd
Коммит 3b00271bac

Просмотреть файл

@@ -37,8 +37,8 @@ func NewErrorPushResponse(message string) PushResponse {
return m
}
func (me *PushResponse) ToJson() string {
b, _ := json.Marshal(me)
func (pr *PushResponse) ToJson() string {
b, _ := json.Marshal(pr)
return string(b)
}