1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-23 17:01:13 +00:00

Removed useless local variable.

git-svn-id: http://svn.redmine.org/redmine/trunk@13658 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2014-11-26 21:10:48 +00:00
parent 34e6646f47
commit 6d4ab70e63

View File

@ -372,7 +372,7 @@ module Redmine
end end
def subject_for_issue(issue, options) def subject_for_issue(issue, options)
output = case options[:format] case options[:format]
when :html when :html
css_classes = '' css_classes = ''
css_classes << ' issue-overdue' if issue.overdue? css_classes << ' issue-overdue' if issue.overdue?
@ -403,7 +403,6 @@ module Redmine
pdf_new_page?(options) pdf_new_page?(options)
pdf_subject(options, issue.subject) pdf_subject(options, issue.subject)
end end
output
end end
def line_for_issue(issue, options) def line_for_issue(issue, options)