Commit a3de0cd6 authored by dineshpanda's avatar dineshpanda

Avoid calling freeze on already frozen strings in app/finders

parent df6f1dd9
...@@ -40,11 +40,11 @@ class IssuableFinder ...@@ -40,11 +40,11 @@ class IssuableFinder
requires_cross_project_access unless: -> { project? } requires_cross_project_access unless: -> { project? }
# This is used as a common filter for None / Any # This is used as a common filter for None / Any
FILTER_NONE = 'none'.freeze FILTER_NONE = 'none'
FILTER_ANY = 'any'.freeze FILTER_ANY = 'any'
# This is used in unassigning users # This is used in unassigning users
NONE = '0'.freeze NONE = '0'
attr_accessor :current_user, :params attr_accessor :current_user, :params
......
...@@ -21,7 +21,7 @@ class TodosFinder ...@@ -21,7 +21,7 @@ class TodosFinder
requires_cross_project_access unless: -> { project? } requires_cross_project_access unless: -> { project? }
NONE = '0'.freeze NONE = '0'
TODO_TYPES = Set.new(%w(Issue MergeRequest Epic)).freeze TODO_TYPES = Set.new(%w(Issue MergeRequest Epic)).freeze
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment