add empty line after guard clause to app/models/custom_field.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20267 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-11-05 13:42:54 +00:00
parent 40be0ae5e0
commit 4394198751

View File

@@ -203,6 +203,7 @@ class CustomField < ActiveRecord::Base
# Returns nil if the custom field can not be used for sorting.
def order_statement
return nil if multiple?
format.order_statement(self)
end
@@ -210,6 +211,7 @@ class CustomField < ActiveRecord::Base
# Returns nil if the custom field can not be used for grouping.
def group_statement
return nil if multiple?
format.group_statement(self)
end