Skip to content

Commit

Permalink
Merge pull request #385 from mihyaeru21/remove-commas
Browse files Browse the repository at this point in the history
remove some strange commas
  • Loading branch information
jdleesmiller committed Mar 21, 2019
2 parents 3219d8e + afb1b79 commit bb34887
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/zip/entry.rb
Expand Up @@ -276,10 +276,10 @@ def pack_local_entry
zip64 = @extra['Zip64']
[::Zip::LOCAL_ENTRY_SIGNATURE,
@version_needed_to_extract, # version needed to extract
@gp_flags, # @gp_flags ,
@gp_flags, # @gp_flags
@compression_method,
@time.to_binary_dos_time, # @last_mod_time ,
@time.to_binary_dos_date, # @last_mod_date ,
@time.to_binary_dos_time, # @last_mod_time
@time.to_binary_dos_date, # @last_mod_date
@crc,
zip64 && zip64.compressed_size ? 0xFFFFFFFF : @compressed_size,
zip64 && zip64.original_size ? 0xFFFFFFFF : @size,
Expand Down Expand Up @@ -433,11 +433,11 @@ def pack_c_dir_entry
@header_signature,
@version, # version of encoding software
@fstype, # filesystem type
@version_needed_to_extract, # @versionNeededToExtract ,
@gp_flags, # @gp_flags ,
@version_needed_to_extract, # @versionNeededToExtract
@gp_flags, # @gp_flags
@compression_method,
@time.to_binary_dos_time, # @last_mod_time ,
@time.to_binary_dos_date, # @last_mod_date ,
@time.to_binary_dos_time, # @last_mod_time
@time.to_binary_dos_date, # @last_mod_date
@crc,
zip64 && zip64.compressed_size ? 0xFFFFFFFF : @compressed_size,
zip64 && zip64.original_size ? 0xFFFFFFFF : @size,
Expand Down

0 comments on commit bb34887

Please sign in to comment.