summaryrefslogtreecommitdiffstats
path: root/models/pull.go
diff options
context:
space:
mode:
authorMatthias Loibl <mail@matthiasloibl.com>2016-11-05 17:56:35 +0100
committerMatthias Loibl <mail@matthiasloibl.com>2016-11-05 17:56:35 +0100
commit1f44b01e2a21b0e715dfd2ccad4574433c8775c3 (patch)
tree95959543a495b95b943dfeecad17668ea76dd6b2 /models/pull.go
parent91b589f2f0fb93f9f9882426c43c363276d2235a (diff)
downloadgitea-1f44b01e2a21b0e715dfd2ccad4574433c8775c3.tar.gz
gitea-1f44b01e2a21b0e715dfd2ccad4574433c8775c3.zip
Fix imports found by goimports.
Diffstat (limited to 'models/pull.go')
-rw-r--r--models/pull.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/models/pull.go b/models/pull.go
index f582adccb0..2828c48a0d 100644
--- a/models/pull.go
+++ b/models/pull.go
@@ -12,15 +12,13 @@ import (
"time"
"github.com/Unknwon/com"
- "github.com/go-xorm/xorm"
-
- "github.com/gogits/git-module"
- api "github.com/gogits/go-gogs-client"
-
"github.com/go-gitea/gitea/modules/log"
"github.com/go-gitea/gitea/modules/process"
"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/gitea/modules/sync"
+ "github.com/go-xorm/xorm"
+ git "github.com/gogits/git-module"
+ api "github.com/gogits/go-gogs-client"
)
var PullRequestQueue = sync.NewUniqueQueue(setting.Repository.PullRequestQueueLength)