diff options
| author | Zsolt Kozaroczy <[email protected]> | 2023-06-05 10:23:47 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-06-05 10:23:47 +0200 |
| commit | d9857fee81eb57935848039c6548d81f3339d728 (patch) | |
| tree | e629fb11f494e85fa1e6205792111b83474d45d9 /lib/axlsx/drawing/bar_3D_chart.rb | |
| parent | ad87c51bf8c8f59a36514bb95dc6d3a582c6b2fd (diff) | |
| parent | 4e555613a021639c12be713c438bb124622c72d3 (diff) | |
| download | caxlsx-d9857fee81eb57935848039c6548d81f3339d728.tar.gz caxlsx-d9857fee81eb57935848039c6548d81f3339d728.zip | |
Merge pull request #271 from tagliala/chore/fix-redundant-parentheses
Remove redundant parentheses
Diffstat (limited to 'lib/axlsx/drawing/bar_3D_chart.rb')
| -rw-r--r-- | lib/axlsx/drawing/bar_3D_chart.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/axlsx/drawing/bar_3D_chart.rb b/lib/axlsx/drawing/bar_3D_chart.rb index 604a9d17..4b688668 100644 --- a/lib/axlsx/drawing/bar_3D_chart.rb +++ b/lib/axlsx/drawing/bar_3D_chart.rb @@ -99,14 +99,14 @@ module Axlsx # space between bar or column clusters, as a percentage of the bar or column width. def gap_width=(v) RangeValidator.validate "Bar3DChart.gap_width", 0, 500, v - @gap_width = (v) + @gap_width = v end alias :gapWidth= :gap_width= # space between bar or column clusters, as a percentage of the bar or column width. def gap_depth=(v) RangeValidator.validate "Bar3DChart.gap_depth", 0, 500, v - @gap_depth = (v) + @gap_depth = v end alias :gapDepth= :gap_depth= |
