]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of lib/redmine/scm/adapters/filesystem_adapter.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 24 Oct 2020 14:40:34 +0000 (14:40 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 24 Oct 2020 14:40:34 +0000 (14:40 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20187 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/filesystem_adapter.rb

index 829bd6513fddbde54b530e5a1319ec7f58b6c562..4efc4a4322928c94b5b8542cfd7ec3d05ba5696b 100644 (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)