diff options
author | Jean Boussier <[email protected]> | 2025-03-27 10:16:14 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2025-03-28 12:44:53 +0900 |
commit | bba30bee6275601e14cde260e3a3c9545cebe6b7 () | |
tree | c45971d0d9483765e744ec207ae91edfc122d662 /ext/json/lib | |
parent | 26e55562ce449d407c95891c8d3258e15cc9b129 (diff) |
[ruby/json] Remove outdated JSON.iconv
https://.com/ruby/json/commit/3de8702354
Notes: Merged: https://.com/ruby/ruby/pull/13004
-rw-r--r-- | ext/json/lib/json/common.rb | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -837,11 +837,6 @@ module JSON end end - # Encodes string using String.encode. - def self.iconv(to, from, string) - string.encode(to, from) - end - # JSON::Coder holds a parser and generator configuration. # # module MyApp |