diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-09-20 17:54:42 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-09-20 17:54:42 +0000 |
commit | 188c560edce19ce4f9e51c7920cb33be2ffeb98f (patch) | |
tree | 714b5c321a9c1308c773581a42700c38b12796ff /lib | |
parent | 9f26eac4f055c408b93a9214dec45dd35fee21ee (diff) | |
download | redmine-188c560edce19ce4f9e51c7920cb33be2ffeb98f.tar.gz redmine-188c560edce19ce4f9e51c7920cb33be2ffeb98f.zip |
code cleanup: rubocop: fix Style/CommentAnnotation in lib/redmine/scm/adapters/cvs_adapter.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18491 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/scm/adapters/cvs_adapter.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/redmine/scm/adapters/cvs_adapter.rb b/lib/redmine/scm/adapters/cvs_adapter.rb index 86fc9e6f7..ba6134a18 100644 --- a/lib/redmine/scm/adapters/cvs_adapter.rb +++ b/lib/redmine/scm/adapters/cvs_adapter.rb @@ -248,10 +248,9 @@ module Redmine author_utf8 = /author: ([^;]+)/.match(line_utf8)[1] author = scm_iconv(options[:log_encoding], 'UTF-8', author_utf8) file_state = /state: ([^;]+)/.match(line)[1] - # TODO: - # linechanges only available in CVS.... - # maybe a feature our SVN implementation. - # I'm sure, they are useful for stats or something else + # TODO: linechanges only available in CVS.... + # maybe a feature our SVN implementation. + # I'm sure, they are useful for stats or something else # linechanges =/lines: \+(\d+) -(\d+)/.match(line) # unless linechanges.nil? # version.line_plus = linechanges[1] |