From 4fe8e9ea54f727c6406dae2bde88446f26e6dfa3 Mon Sep 17 00:00:00 2001 From: michail Date: Thu, 27 Jan 2022 22:48:06 +0200 Subject: [PATCH] fix for https://github.com/ruby-i18n/i18n/pull/573#issuecomment-1023621489 and https://github.com/ruby-i18n/i18n/issues/603 --- lib/i18n/backend/chain.rb | 2 -- lib/i18n/backend/gettext.rb | 1 - 2 files changed, 3 deletions(-) diff --git a/lib/i18n/backend/chain.rb b/lib/i18n/backend/chain.rb index 2d9d8ff3..525dd2de 100644 --- a/lib/i18n/backend/chain.rb +++ b/lib/i18n/backend/chain.rb @@ -1,7 +1,5 @@ # frozen_string_literal: true -require 'i18n/core_ext/hash' - module I18n module Backend # Backend that chains multiple other backends and checks each of them when diff --git a/lib/i18n/backend/gettext.rb b/lib/i18n/backend/gettext.rb index 50d85805..07696463 100644 --- a/lib/i18n/backend/gettext.rb +++ b/lib/i18n/backend/gettext.rb @@ -1,6 +1,5 @@ # frozen_string_literal: true -require 'i18n/core_ext/hash' require 'i18n/gettext' require 'i18n/gettext/po_parser'