summaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-08 01:37:14 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-08 01:37:14 +0000
commitc611a585ad80b144ead2c581827d3c38c6072ea8 (patch)
tree393f048b44f1b8e1559307f1670f8c4bf7fb8d3d /app/controllers
parentd9435cf2f6dbb50762bd1e4cf6d9b14be7566062 (diff)
downloadredmine-c611a585ad80b144ead2c581827d3c38c6072ea8.tar.gz
redmine-c611a585ad80b144ead2c581827d3c38c6072ea8.zip
cleanup: rubocop: fix Layout/AlignArguments in app/controllers/issues_controller.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18940 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/issues_controller.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb
index a5981999c..f5103a821 100644
--- a/app/controllers/issues_controller.rb
+++ b/app/controllers/issues_controller.rb
@@ -336,7 +336,8 @@ class IssuesController < ApplicationController
@issues.each do |orig_issue|
orig_issue.reload
if @copy
- issue = orig_issue.copy({},
+ issue = orig_issue.copy(
+ {},
:attachments => copy_attachments,
:subtasks => copy_subtasks,
:watchers => copy_watchers,