summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-23 14:27:31 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-11-23 14:27:31 +0000
commit5f6a86a774c85bc581e2218700e766013c12e417 (patch)
treead8465cae3898f0a20dbfabbbe4e4c1f18ab1de9
parent6a1e4b86af1dd1b5ade7cf67de8a57945c845efb (diff)
downloadredmine-5f6a86a774c85bc581e2218700e766013c12e417.tar.gz
redmine-5f6a86a774c85bc581e2218700e766013c12e417.zip
cleanup: rubocop: fix Layout/SpaceAfterComma in lib/redmine/scm/adapters/git_adapter.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19201 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--lib/redmine/scm/adapters/git_adapter.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/redmine/scm/adapters/git_adapter.rb b/lib/redmine/scm/adapters/git_adapter.rb
index 94d84e485..eba781013 100644
--- a/lib/redmine/scm/adapters/git_adapter.rb
+++ b/lib/redmine/scm/adapters/git_adapter.rb
@@ -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