From e7fe04f526f93382c6c6f72c9899bde72e4401f7 Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Thu, 22 Jun 2023 12:47:28 +1000 Subject: [PATCH] Revert "Fix json v1.8.6 common.rb warning" This reverts commit 21b80db0ee29c853ead0fb58cd004c04b6185c51. This fix was needed for an old version of the JSON module with a newer version of Ruby. But we updated the json gem since and don't need this any more. --- config/initializers/json.rb | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 config/initializers/json.rb diff --git a/config/initializers/json.rb b/config/initializers/json.rb deleted file mode 100644 index 050ef5f364..0000000000 --- a/config/initializers/json.rb +++ /dev/null @@ -1,7 +0,0 @@ -module JSON - module_function - - def parse(source, opts = {}) - Parser.new(source, **opts).parse - end -end