From 0c8968fb8df4ce302c928118cd81e75f5bef2861 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 30 Jan 2018 17:23:00 -0600 Subject: unnamed return (#8170) --- model/push_notification.go | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) (limited to 'model/push_notification.go') diff --git a/model/push_notification.go b/model/push_notification.go index 69719e74c..0d7ba77ac 100644 --- a/model/push_notification.go +++ b/model/push_notification.go @@ -47,12 +47,8 @@ type PushNotification struct { } func (me *PushNotification) ToJson() string { - b, err := json.Marshal(me) - if err != nil { - return "" - } else { - return string(b) - } + b, _ := json.Marshal(me) + return string(b) } func (me *PushNotification) SetDeviceIdAndPlatform(deviceId string) { @@ -66,12 +62,7 @@ func (me *PushNotification) SetDeviceIdAndPlatform(deviceId string) { } func PushNotificationFromJson(data io.Reader) *PushNotification { - decoder := json.NewDecoder(data) - var me PushNotification - err := decoder.Decode(&me) - if err == nil { - return &me - } else { - return nil - } + var me *PushNotification + json.NewDecoder(data).Decode(&me) + return me } -- cgit v1.2.3-1-g7c22