From 4e555613a021639c12be713c438bb124622c72d3 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Wed, 31 May 2023 17:31:59 +0200 Subject: Remove redundant parentheses - Style/ParenthesesAroundCondition - Style/RedundantParentheses - Style/TernaryParentheses `Style/ParenthesesAroundCondition` may be questionable, but a majority of comparison where not using parentheses, so offenses have been fixed for uniformity across the codebase --- lib/axlsx/drawing/scatter_series.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/axlsx/drawing/scatter_series.rb') diff --git a/lib/axlsx/drawing/scatter_series.rb b/lib/axlsx/drawing/scatter_series.rb index 2838c3de..a287a112 100644 --- a/lib/axlsx/drawing/scatter_series.rb +++ b/lib/axlsx/drawing/scatter_series.rb @@ -110,7 +110,7 @@ module Axlsx end @xData.to_xml_string(str) unless @xData.nil? @yData.to_xml_string(str) unless @yData.nil? - str << '' + str << '' end str end -- cgit v1.2.3