summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/util/storage.rb
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-04-09 16:55:57 +0200
committerGeremia Taglialatela <[email protected]>2023-04-09 16:55:57 +0200
commitc77a48805c17d36c4503df8cf0fe75e7b620e2d4 (patch)
tree05f26df0b6d75846d0868d4bd6d4ad090ea1073c /lib/axlsx/util/storage.rb
parent3befab6f5713c537f6b90b51c02882273c7f7cc9 (diff)
downloadcaxlsx-c77a48805c17d36c4503df8cf0fe75e7b620e2d4.tar.gz
caxlsx-c77a48805c17d36c4503df8cf0fe75e7b620e2d4.zip
Fix offenses related to indentation consistency
Diffstat (limited to 'lib/axlsx/util/storage.rb')
-rw-r--r--lib/axlsx/util/storage.rb22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/axlsx/util/storage.rb b/lib/axlsx/util/storage.rb
index c2f0739c..4932c93c 100644
--- a/lib/axlsx/util/storage.rb
+++ b/lib/axlsx/util/storage.rb
@@ -15,17 +15,17 @@ module Axlsx
# Creates a byte string for this storage
# @return [String]
def to_s
- data = [@name.concat(Array.new(32 - @name.size, 0)),
- @name_size,
- @type,
- @color,
- @left,
- @right,
- @child,
- @created,
- @modified,
- @sector,
- @size].flatten
+ data = [@name.concat(Array.new(32 - @name.size, 0)),
+ @name_size,
+ @type,
+ @color,
+ @left,
+ @right,
+ @child,
+ @created,
+ @modified,
+ @sector,
+ @size].flatten
data.pack(PACKING)
end