diff options
author | Go MAEDA <maeda@farend.jp> | 2023-01-11 13:33:32 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2023-01-11 13:33:32 +0000 |
commit | e010d90207d23fa47ae9d262433ac22436fa8b1a (patch) | |
tree | 193400b4e2a70536ea839544acf5edb0eee26303 /lib/redmine | |
parent | 62a930cc65472133123f674c4bbdfcbd822cc731 (diff) | |
download | redmine-e010d90207d23fa47ae9d262433ac22436fa8b1a.tar.gz redmine-e010d90207d23fa47ae9d262433ac22436fa8b1a.zip |
Fix RuboCop offense Performance/RedundantSplitRegexpArgument (#38146).
git-svn-id: https://svn.redmine.org/redmine/trunk@22033 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine')
-rw-r--r-- | lib/redmine/wiki_formatting/textile/redcloth3.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/redmine/wiki_formatting/textile/redcloth3.rb b/lib/redmine/wiki_formatting/textile/redcloth3.rb index 77bfa0ab6..406fca08d 100644 --- a/lib/redmine/wiki_formatting/textile/redcloth3.rb +++ b/lib/redmine/wiki_formatting/textile/redcloth3.rb @@ -558,7 +558,7 @@ class RedCloth3 < String # Parses Textile lists and generates HTML def block_textile_lists( text ) text.gsub!( LISTS_RE ) do |match| - lines = match.split( /\n/ ) + lines = match.split( "\n" ) last_line = -1 depth = [] lines.each_with_index do |line, line_id| @@ -603,7 +603,7 @@ class RedCloth3 < String def block_textile_quotes( text ) text.gsub!( QUOTES_RE ) do |match| - lines = match.split( /\n/ ) + lines = match.split( "\n" ) quotes = +'' indent = 0 lines.each do |line| |