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

add empty line after guard clause to RepositoriesHelper

git-svn-id: http://svn.redmine.org/redmine/trunk@19960 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-08-09 15:56:07 +00:00
parent b8057a88ec
commit 057c150ff7

View File

@ -87,6 +87,7 @@ module RepositoriesHelper
def render_changes_tree(tree)
return '' if tree.nil?
output = +''
output << '<ul>'
tree.keys.sort.each do |file|
@ -279,6 +280,7 @@ module RepositoriesHelper
def index_commits(commits, heads)
return nil if commits.nil? or commits.first.parents.nil?
refs_map = {}
heads.each do |head|
refs_map[head.scmid] ||= []