From: Toshi MARUYAMA Date: Wed, 20 Nov 2019 16:00:28 +0000 (+0000) Subject: cleanup: rubocop: fix Layout/EmptyLinesAroundClassBody in app/models/query.rb X-Git-Tag: 4.2.0~1541 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3326956a623fffab13e89b3577632eac60edaad7;p=redmine.git cleanup: rubocop: fix Layout/EmptyLinesAroundClassBody in app/models/query.rb git-svn-id: http://svn.redmine.org/redmine/trunk@19097 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/query.rb b/app/models/query.rb index 93c36887a..7c0937167 100644 --- a/app/models/query.rb +++ b/app/models/query.rb @@ -85,7 +85,6 @@ class QueryColumn end class TimestampQueryColumn < QueryColumn - def groupable if @groupable Redmine::Database.timestamp_to_date(sortable, User.current.time_zone) @@ -100,7 +99,6 @@ class TimestampQueryColumn < QueryColumn end class QueryAssociationColumn < QueryColumn - def initialize(association, attribute, options={}) @association = association @attribute = attribute @@ -120,7 +118,6 @@ class QueryAssociationColumn < QueryColumn end class QueryCustomFieldColumn < QueryColumn - def initialize(custom_field, options={}) self.name = "cf_#{custom_field.id}".to_sym self.sortable = custom_field.order_statement || false @@ -164,7 +161,6 @@ class QueryCustomFieldColumn < QueryColumn end class QueryAssociationCustomFieldColumn < QueryCustomFieldColumn - def initialize(association, custom_field, options={}) super(custom_field, options) self.name = "#{association}.cf_#{custom_field.id}".to_sym