diff options
author | Mau Magnaguagno <[email protected]> | 2023-01-27 17:48:18 -0300 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-02-21 19:31:28 +0900 |
commit | 1a05d988d391d744d49c0143b90e46397ab29765 (patch) | |
tree | 50df9727a5dfe9539e1cfb07b46b5d741a29aa14 | |
parent | 38fa8eb4cbdc3c470a1ff5521a5ee6932356c6b1 (diff) |
[ruby/csv] Remove unused @double_quote_character from Parser
(https://github.com/ruby/csv/pull/273)
https://github.com/ruby/csv/commit/e5622c53ae
-rw-r--r-- | lib/csv/parser.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/csv/parser.rb b/lib/csv/parser.rb index afb3131cd5..1f8b150e19 100644 --- a/lib/csv/parser.rb +++ b/lib/csv/parser.rb @@ -485,7 +485,6 @@ class CSV message = ":quote_char has to be nil or a single character String" raise ArgumentError, message end - @double_quote_character = @quote_character * 2 @escaped_quote_character = Regexp.escape(@quote_character) @escaped_quote = Regexp.new(@escaped_quote_character) end |