Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuilherme Garnier <guilherme.garnier@gmail.com>2015-10-03 08:56:37 +0300
committerGuilherme Garnier <guilherme.garnier@gmail.com>2015-10-03 08:56:37 +0300
commit2b075f16c7e867ae19a79fb7c59ca6754f9df7bf (patch)
tree8cc69512641e1d367a8e436018b21a2697b3677b /app/finders
parent0406455c8a9094d7849f586a473cf6f5d3253f10 (diff)
Fix rubocop warnings in app
Diffstat (limited to 'app/finders')
-rw-r--r--app/finders/issuable_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/issuable_finder.rb b/app/finders/issuable_finder.rb
index ab89aa2c53a..6aa16673d63 100644
--- a/app/finders/issuable_finder.rb
+++ b/app/finders/issuable_finder.rb
@@ -39,7 +39,7 @@ class IssuableFinder
items = by_assignee(items)
items = by_author(items)
items = by_label(items)
- items = sort(items)
+ sort(items)
end
def group