diff options
author | Guilherme Garnier <guilherme.garnier@gmail.com> | 2015-10-03 00:56:37 -0500 |
---|---|---|
committer | Guilherme Garnier <guilherme.garnier@gmail.com> | 2015-10-03 00:56:37 -0500 |
commit | 2b075f16c7e867ae19a79fb7c59ca6754f9df7bf (patch) | |
tree | 8cc69512641e1d367a8e436018b21a2697b3677b /app/finders | |
parent | 0406455c8a9094d7849f586a473cf6f5d3253f10 (diff) | |
download | gitlab-ce-2b075f16c7e867ae19a79fb7c59ca6754f9df7bf.tar.gz |
Fix rubocop warnings in app
Diffstat (limited to 'app/finders')
-rw-r--r-- | app/finders/issuable_finder.rb | 2 |
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 |