Skip to content

Commit

Permalink
Remove redundant freeze
Browse files Browse the repository at this point in the history
since frozen_string_literal magic comment added.
  • Loading branch information
znz committed Jan 24, 2024
1 parent 63940ac commit 89324dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/webmock/util/headers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ module Util

class Headers

STANDARD_HEADER_DELIMITER = '-'.freeze
NONSTANDARD_HEADER_DELIMITER = '_'.freeze
JOIN = ', '.freeze
STANDARD_HEADER_DELIMITER = '-'
NONSTANDARD_HEADER_DELIMITER = '_'
JOIN = ', '

def self.normalize_headers(headers)
return nil unless headers
Expand Down

0 comments on commit 89324dc

Please sign in to comment.