diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2016-11-05 13:58:53 -0200 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2016-11-05 15:44:14 -0200 |
commit | bd898a10f888005be990ebea2e6a845d09ef55f3 (patch) | |
tree | 784e84c939367a64b5bd5a7322a801dd83108642 /routers/repo/pull.go | |
parent | 91b589f2f0fb93f9f9882426c43c363276d2235a (diff) | |
download | gitea-bd898a10f888005be990ebea2e6a845d09ef55f3.tar.gz gitea-bd898a10f888005be990ebea2e6a845d09ef55f3.zip |
Refactor editorconfig middleware
Diffstat (limited to 'routers/repo/pull.go')
-rw-r--r-- | routers/repo/pull.go | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/routers/repo/pull.go b/routers/repo/pull.go index 6dbb2b6025..62162af67b 100644 --- a/routers/repo/pull.go +++ b/routers/repo/pull.go @@ -368,11 +368,6 @@ func ViewPullFiles(ctx *context.Context) { return } - setEditorconfigIfExists(ctx) - if ctx.Written() { - return - } - headTarget := path.Join(pull.HeadUserName, pull.HeadRepo.Name) ctx.Data["IsSplitStyle"] = ctx.Query("style") == "split" ctx.Data["Username"] = pull.HeadUserName @@ -625,11 +620,6 @@ func CompareAndPullRequest(ctx *context.Context) { } } - setEditorconfigIfExists(ctx) - if ctx.Written() { - return - } - ctx.HTML(200, COMPARE_PULL) } |