diff options
| author | Geremia Taglialatela <[email protected]> | 2023-05-20 17:19:24 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-05-20 17:19:24 +0200 |
| commit | 90db2eecf0271b9597891dc3dd96b2b0b26ec5d3 (patch) | |
| tree | f6528b095a3ff407e4afab262c65b5ef0ee18571 /lib/axlsx/util/storage.rb | |
| parent | 6a4b82def2e94b4811c38c37e606d426710d1e6c (diff) | |
| download | caxlsx-90db2eecf0271b9597891dc3dd96b2b0b26ec5d3.tar.gz caxlsx-90db2eecf0271b9597891dc3dd96b2b0b26ec5d3.zip | |
Fix Lint/Void offenses
Setter methods return the assigned value. Given:
```rb
class MyClass
def foo=(v)
v = 10
42
end
end
```
`my_object.foo = 5` will always return `5`
This methods removes code that does not have effect
Diffstat (limited to 'lib/axlsx/util/storage.rb')
| -rw-r--r-- | lib/axlsx/util/storage.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/axlsx/util/storage.rb b/lib/axlsx/util/storage.rb index 2ce0d8f5..1e12b2d4 100644 --- a/lib/axlsx/util/storage.rb +++ b/lib/axlsx/util/storage.rb @@ -63,7 +63,6 @@ module Axlsx def name=(v) @name = v.bytes.to_a << 0 @name_size = @name.size * 2 - @name end # The size of the stream |
