From 80a59a62441c0938d0a29fcd5dd95f8024db6ddf Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Thu, 27 Mar 2025 11:01:45 +0100 Subject: [PATCH] [ruby/json] Remove more dead code https://github.com/ruby/json/commit/eda239ad34 --- ext/json/lib/json/common.rb | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ext/json/lib/json/common.rb b/ext/json/lib/json/common.rb index c47152e383..9e9d6fb3ef 100644 --- a/ext/json/lib/json/common.rb +++ b/ext/json/lib/json/common.rb @@ -161,13 +161,6 @@ module JSON end end - # For backwards compatibility - UnparserError = GeneratorError # :nodoc: - - # This exception is raised if the required unicode support is missing on the - # system. Usually this means that the iconv library is not installed. - class MissingUnicodeSupport < JSONError; end - # Fragment of JSON document that is to be included as is: # fragment = JSON::Fragment.new("[1, 2, 3]") # JSON.generate({ count: 3, items: fragments })