diff options
| author | Geremia Taglialatela <[email protected]> | 2023-06-15 09:30:29 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-06-15 09:30:29 +0200 |
| commit | 988c79b8d7602c67f7b761269383129609cf63a7 (patch) | |
| tree | 036d742dc625ea43028326d869a06e35ef9952b1 /lib/axlsx/workbook/worksheet/row_breaks.rb | |
| parent | e74c75b95d39fb51512387031e79f50e52a5874a (diff) | |
| download | caxlsx-988c79b8d7602c67f7b761269383129609cf63a7.tar.gz caxlsx-988c79b8d7602c67f7b761269383129609cf63a7.zip | |
Fix redundant self offenses
No performance gain, this can be seen as a cosmetic change to have
shorter lines
Diffstat (limited to 'lib/axlsx/workbook/worksheet/row_breaks.rb')
| -rw-r--r-- | lib/axlsx/workbook/worksheet/row_breaks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/row_breaks.rb b/lib/axlsx/workbook/worksheet/row_breaks.rb index 381dc0b6..98409ab4 100644 --- a/lib/axlsx/workbook/worksheet/row_breaks.rb +++ b/lib/axlsx/workbook/worksheet/row_breaks.rb @@ -26,7 +26,7 @@ module Axlsx def to_xml_string(str = +'') return if empty? - str << '<rowBreaks count="' << self.size.to_s << '" manualBreakCount="' << self.size.to_s << '">' + str << '<rowBreaks count="' << size.to_s << '" manualBreakCount="' << size.to_s << '">' each { |brk| brk.to_xml_string(str) } str << '</rowBreaks>' end |
