fix variable assigned and not used.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2016-11-15 14:16:27 +08:00
parent 07a0753420
commit d9ffe99972
2 changed files with 1 additions and 5 deletions

View file

@ -146,10 +146,6 @@ func RepoAssignment(args ...bool) macaron.Handler {
userName := ctx.Params(":username")
repoName := ctx.Params(":reponame")
refName := ctx.Params(":branchname")
if len(refName) == 0 {
refName = ctx.Params(":path")
}
// Check if the user is the same as the repository owner
if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {