]> source.dussan.org Git - redmine.git/commitdiff
add empty line after guard clause to lib/redmine/scm/adapters/abstract_adapter.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 9 Aug 2020 15:55:59 +0000 (15:55 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 9 Aug 2020 15:55:59 +0000 (15:55 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19959 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/abstract_adapter.rb

index b1e64edd89a4daf4aab3d1553efea7f82808ecc0..b774a87481b2323d464b7fb000f4f42c37ebe59b 100644 (file)
@@ -278,6 +278,7 @@ module Redmine
         def scm_iconv(to, from, str)
           return if str.nil?
           return str if to == from && str.encoding.to_s == from
+
           str = str.dup
           str.force_encoding(from)
           begin