Browse Source

fix source indent of lib/redmine/scm/adapters/filesystem_adapter.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20187 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Toshi MARUYAMA 3 years ago
parent
commit
07718ef6cf
1 changed files with 6 additions and 2 deletions
  1. 6
    2
      lib/redmine/scm/adapters/filesystem_adapter.rb

+ 6
- 2
lib/redmine/scm/adapters/filesystem_adapter.rb View File

@@ -68,8 +68,12 @@ module Redmine
e_utf8 = scm_iconv('UTF-8', @path_encoding, e1)
next if e_utf8.blank?

relative_path_utf8 = format_path_ends(
(format_path_ends(path,false,true) + e_utf8),false,false)
relative_path_utf8 =
format_path_ends(
(format_path_ends(path, false, true) + e_utf8),
false,
false
)
t1_utf8 = target(relative_path_utf8)
t1 = scm_iconv(@path_encoding, 'UTF-8', t1_utf8)
relative_path = scm_iconv(@path_encoding, 'UTF-8', relative_path_utf8)

Loading…
Cancel
Save