]> source.dussan.org Git - redmine.git/commitdiff
add empty line after guard clause to lib/redmine/helpers/gantt.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 4 Dec 2020 13:59:29 +0000 (13:59 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 4 Dec 2020 13:59:29 +0000 (13:59 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20571 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/helpers/gantt.rb

index 7cefff825541a4f3ae3f87212c19f7b366352a79..0936eb782249d4a3630e8d662067c95bb1b13509 100644 (file)
@@ -115,6 +115,7 @@ module Redmine
       # Returns the number of rows that will be rendered on the Gantt chart
       def number_of_rows
         return @number_of_rows if @number_of_rows
+
         rows = projects.inject(0) {|total, p| total += number_of_rows_on_project(p)}
         rows > @max_rows ? @max_rows : rows
       end
@@ -123,6 +124,7 @@ module Redmine
       # the Gantt chart.  This will recurse for each subproject.
       def number_of_rows_on_project(project)
         return 0 unless projects.include?(project)
+
         count = 1
         count += project_issues(project).size
         count += project_versions(project).size
@@ -160,6 +162,7 @@ module Redmine
       # and that should be displayed, grouped by issue ids.
       def relations
         return @relations if @relations
+
         if issues.any?
           issue_ids = issues.map(&:id)
           @relations = IssueRelation.
@@ -173,6 +176,7 @@ module Redmine
       # Return all the project nodes that will be displayed
       def projects
         return @projects if @projects
+
         ids = issues.collect(&:project).uniq.collect(&:id)
         if ids.any?
           # All issues projects and their visible ancestors