diff options
author | Unknwon <u@gogs.io> | 2016-07-23 20:24:44 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-07-23 20:24:44 +0800 |
commit | 250be011c769decc729ec7dcc318b24e0613e73d (patch) | |
tree | a9fa643a58e68d42a43ba67a61e6145a52adb1ec /models/pull.go | |
parent | 4e822c1911755a94fef22435d191b6ca57c6f467 (diff) | |
download | gitea-250be011c769decc729ec7dcc318b24e0613e73d.tar.gz gitea-250be011c769decc729ec7dcc318b24e0613e73d.zip |
Remove redundant Unix timestamp method call
Unix() already uses UTC as timezone
Diffstat (limited to 'models/pull.go')
-rw-r--r-- | models/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/pull.go b/models/pull.go index 6380bbbd2d..38fd945711 100644 --- a/models/pull.go +++ b/models/pull.go @@ -65,7 +65,7 @@ type PullRequest struct { } func (pr *PullRequest) BeforeUpdate() { - pr.MergedUnix = pr.Merged.UTC().Unix() + pr.MergedUnix = pr.Merged.Unix() } // Note: don't try to get Pull because will end up recursive querying. |