diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-30 05:21:27 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-08-30 05:21:27 +0000 |
commit | 28bba481f952a96024a76f976d1cd4343d78706c (patch) | |
tree | 5e474875b8c2fbfcb62fd563d1be37ae9ca28e36 /ext/json | |
parent | b14c060ddabfad99deff3e56d847034f7d0946be (diff) | |
download | ruby-28bba481f952a96024a76f976d1cd4343d78706c.tar.gz |
Don't include complex and rational; fix r33122.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/json')
-rw-r--r-- | ext/json/lib/json/add/core.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/json/lib/json/add/core.rb b/ext/json/lib/json/add/core.rb index fde53a4d01..4624be22c2 100644 --- a/ext/json/lib/json/add/core.rb +++ b/ext/json/lib/json/add/core.rb @@ -5,8 +5,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end require 'date' -require 'complex' -require 'rational' # Symbol serialization/deserialization class Symbol |