fix for Ruby 2.3

This commit is contained in:
Ben Balter 2018-11-02 12:24:57 -07:00
parent 4dfe4b1d7b
commit 6994179d3a
No known key found for this signature in database
GPG Key ID: DBB67C246AD356C4
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ module Licensee
# rubocop:disable Naming/MemoizedInstanceVariableName
def _content
@_content ||= content.dup.to_s.strip
@_content ||= content.to_s.dup.strip
end
# rubocop:enable Naming/MemoizedInstanceVariableName