summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/drawing
diff options
context:
space:
mode:
authorZsolt Kozaroczy <[email protected]>2023-05-22 10:26:45 +0200
committerGitHub <[email protected]>2023-05-22 10:26:45 +0200
commitd5f4e76861ed4c9d85d9813d545467790ef5e1a8 (patch)
tree9f2e4be6ce07d9a0ce0d4f8e4bd8e8a8b2a7e72d /lib/axlsx/drawing
parent32d1fd900604131fcb0549b2b052944238d63155 (diff)
parent90db2eecf0271b9597891dc3dd96b2b0b26ec5d3 (diff)
downloadcaxlsx-d5f4e76861ed4c9d85d9813d545467790ef5e1a8.tar.gz
caxlsx-d5f4e76861ed4c9d85d9813d545467790ef5e1a8.zip
Merge pull request #240 from tagliala/chore/fix-void-contexts
Fix Lint/Void offenses
Diffstat (limited to 'lib/axlsx/drawing')
-rw-r--r--lib/axlsx/drawing/title.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/axlsx/drawing/title.rb b/lib/axlsx/drawing/title.rb
index c3ca9632..2e4037fb 100644
--- a/lib/axlsx/drawing/title.rb
+++ b/lib/axlsx/drawing/title.rb
@@ -32,7 +32,6 @@ module Axlsx
DataTypeValidator.validate 'Title.text', String, v
@text = v
@cell = nil
- v
end
# @see text_size
@@ -40,7 +39,6 @@ module Axlsx
DataTypeValidator.validate 'Title.text_size', String, v
@text_size = v
@cell = nil
- v
end
# @see cell
@@ -48,7 +46,6 @@ module Axlsx
DataTypeValidator.validate 'Title.text', Cell, v
@cell = v
@text = v.value.to_s
- v
end
# Check if the title is empty.