diff options
Diffstat (limited to 'services/lfs/locks.go')
-rw-r--r-- | services/lfs/locks.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/services/lfs/locks.go b/services/lfs/locks.go index c2ede20b7c..3839119b27 100644 --- a/services/lfs/locks.go +++ b/services/lfs/locks.go @@ -80,7 +80,7 @@ func GetListLockHandler(ctx *context.Context) { limit = 0 } id := ctx.FormString("id") - if id != "" { //Case where we request a specific id + if id != "" { // Case where we request a specific id v, err := strconv.ParseInt(id, 10, 64) if err != nil { ctx.JSON(http.StatusBadRequest, api.LFSLockError{ @@ -97,7 +97,7 @@ func GetListLockHandler(ctx *context.Context) { } path := ctx.FormString("path") - if path != "" { //Case where we request a specific id + if path != "" { // Case where we request a specific id lock, err := models.GetLFSLock(repository, path) if err != nil && !models.IsErrLFSLockNotExist(err) { log.Error("Unable to get lock for repository %-v with path %s: Error: %v", repository, path, err) @@ -106,7 +106,7 @@ func GetListLockHandler(ctx *context.Context) { return } - //If no query params path or id + // If no query params path or id lockList, err := models.GetLFSLockByRepoID(repository.ID, cursor, limit) if err != nil { log.Error("Unable to list locks for repository ID[%d]: Error: %v", repository.ID, err) |