]> source.dussan.org Git - redmine.git/commitdiff
cleanup: rubocop: fix Layout/SpaceAfterComma in lib/redmine/scm/adapters/git_adapter.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 23 Nov 2019 14:27:31 +0000 (14:27 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 23 Nov 2019 14:27:31 +0000 (14:27 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19201 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/git_adapter.rb

index 94d84e485af1bea1a2956fa3b03c0997812b0c89..eba781013f63772a247a1731c221f176502e0da5 100644 (file)
@@ -69,7 +69,7 @@ module Redmine
         end
 
         def info
-          Info.new(:root_url => url, :lastrev => lastrev('',nil))
+          Info.new(:root_url => url, :lastrev => lastrev('', nil))
         rescue
           nil
         end
@@ -421,7 +421,7 @@ module Redmine
         class Revision < Redmine::Scm::Adapters::Revision
           # Returns the readable identifier
           def format_identifier
-            identifier[0,8]
+            identifier[0, 8]
           end
         end