mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-01 03:57:15 +00:00
Fix RuboCop offense Style/RedundantSelfAssignmentBranch (#36919).
git-svn-id: https://svn.redmine.org/redmine/trunk@22263 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e0e751f5bc
commit
0befc3a23c
@ -93,7 +93,7 @@ module ProjectsHelper
|
||||
grouped[version.project.name] << [version.name, version.id]
|
||||
end
|
||||
|
||||
selected = selected.is_a?(Version) ? selected.id : selected
|
||||
selected = selected.id if selected.is_a?(Version)
|
||||
if grouped.keys.size > 1
|
||||
grouped_options_for_select(grouped, selected)
|
||||
else
|
||||
|
||||
@ -928,7 +928,7 @@ class Project < ActiveRecord::Base
|
||||
# project.copy(1, :only => 'members') # => copies members only
|
||||
# project.copy(1, :only => ['members', 'versions']) # => copies members and versions
|
||||
def copy(project, options={})
|
||||
project = project.is_a?(Project) ? project : Project.find(project)
|
||||
project = Project.find(project) unless project.is_a?(Project)
|
||||
|
||||
to_be_copied = %w(members wiki versions issue_categories issues queries boards documents)
|
||||
to_be_copied = to_be_copied & Array.wrap(options[:only]) unless options[:only].nil?
|
||||
@ -956,7 +956,7 @@ class Project < ActiveRecord::Base
|
||||
|
||||
# Returns a new unsaved Project instance with attributes copied from +project+
|
||||
def self.copy_from(project)
|
||||
project = project.is_a?(Project) ? project : Project.find(project)
|
||||
project = Project.find(project) unless project.is_a?(Project)
|
||||
# clear unique attributes
|
||||
attributes =
|
||||
project.attributes.dup.except('id', 'name', 'identifier',
|
||||
|
||||
@ -498,7 +498,7 @@ class RedCloth3 < String
|
||||
c.starts_with?('wiki-class-') ? c : "wiki-class-#{c}"
|
||||
end.join(' ') if cls
|
||||
|
||||
id = id.starts_with?('wiki-id-') ? id : "wiki-id-#{id}" if id
|
||||
id = "wiki-id-#{id}" if id && !id.start_with?('wiki-id-')
|
||||
|
||||
atts = +''
|
||||
atts << " style=\"#{style.join}\"" unless style.empty?
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user