CRLF -> LF

This commit is contained in:
Alex Dima 2022-02-04 14:02:37 +01:00
parent d7ac67dbf8
commit aa75ddccbb
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
42 changed files with 41762 additions and 41762 deletions

View file

@ -1,21 +1,21 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft. All rights reserved.
#--------------------------------------------------------------------------
module Azure
module Blob
class Blob
def initialize
@properties = {}
@metadata = {}
yield self if block_given?
end
attr_accessor :name
attr_accessor :snapshot
attr_accessor :properties
attr_accessor :metadata
end
end
#-------------------------------------------------------------------------
# Copyright (c) Microsoft. All rights reserved.
#--------------------------------------------------------------------------
module Azure
module Blob
class Blob
def initialize
@properties = {}
@metadata = {}
yield self if block_given?
end
attr_accessor :name
attr_accessor :snapshot
attr_accessor :properties
attr_accessor :metadata
end
end
end