diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-06-11 09:38:04 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-06-11 09:38:04 +0000 |
commit | 3261d3f3cc64aa154fe58c55507dcd957ae3247f (patch) | |
tree | c0995a649447fa0de6ccb9fa302fcac0003d0a3f /ext/json/lib/json/add | |
parent | 69b8fddd550ff7b265b55a879627898231c0f92b (diff) |
* ext/json/lib/*.rb: Removed some comments. Because these are unnecessary
class description. [ci skip][Bug #12255][ruby-core:74835]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55380 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/json/lib/json/add')
-rw-r--r-- | ext/json/lib/json/add/date.rb | 1 | ||||
-rw-r--r-- | ext/json/lib/json/add/date_time.rb | 1 | ||||
-rw-r--r-- | ext/json/lib/json/add/exception.rb | 1 | ||||
-rw-r--r-- | ext/json/lib/json/add/ostruct.rb | 1 | ||||
-rw-r--r-- | ext/json/lib/json/add/range.rb | 1 | ||||
-rw-r--r-- | ext/json/lib/json/add/regexp.rb | 1 | ||||
-rw-r--r-- | ext/json/lib/json/add/struct.rb | 1 | ||||
-rw-r--r-- | ext/json/lib/json/add/symbol.rb | 1 | ||||
-rw-r--r-- | ext/json/lib/json/add/time.rb | 1 |
9 files changed, 0 insertions, 9 deletions
diff --git a/ext/json/lib/json/add/date.rb b/ext/json/lib/json/add/date.rb index 20f0e8dc77..b58af76e10 100644 --- a/ext/json/lib/json/add/date.rb +++ b/ext/json/lib/json/add/date.rb @@ -4,7 +4,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED end require 'date' -# Date serialization/deserialization class Date # Deserializes JSON string by converting Julian year <tt>y</tt>, month diff --git a/ext/json/lib/json/add/date_time.rb b/ext/json/lib/json/add/date_time.rb index 757d43c266..f794eb3d7d 100644 --- a/ext/json/lib/json/add/date_time.rb +++ b/ext/json/lib/json/add/date_time.rb @@ -4,7 +4,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED end require 'date' -# DateTime serialization/deserialization class DateTime # Deserializes JSON string by converting year <tt>y</tt>, month <tt>m</tt>, diff --git a/ext/json/lib/json/add/exception.rb b/ext/json/lib/json/add/exception.rb index 95379d97f5..caac713c6a 100644 --- a/ext/json/lib/json/add/exception.rb +++ b/ext/json/lib/json/add/exception.rb @@ -3,7 +3,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end -# Exception serialization/deserialization class Exception # Deserializes JSON string by constructing new Exception object with message diff --git a/ext/json/lib/json/add/ostruct.rb b/ext/json/lib/json/add/ostruct.rb index 2fa1e88b93..1f9ce7b3b4 100644 --- a/ext/json/lib/json/add/ostruct.rb +++ b/ext/json/lib/json/add/ostruct.rb @@ -4,7 +4,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED end require 'ostruct' -# OpenStruct serialization/deserialization class OpenStruct # Deserializes JSON string by constructing new Struct object with values diff --git a/ext/json/lib/json/add/range.rb b/ext/json/lib/json/add/range.rb index 4dd7ccf0eb..3ef20150bf 100644 --- a/ext/json/lib/json/add/range.rb +++ b/ext/json/lib/json/add/range.rb @@ -3,7 +3,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end -# Range serialization/deserialization class Range # Deserializes JSON string by constructing new Range object with arguments diff --git a/ext/json/lib/json/add/regexp.rb b/ext/json/lib/json/add/regexp.rb index 4bea64fb19..41b260f307 100644 --- a/ext/json/lib/json/add/regexp.rb +++ b/ext/json/lib/json/add/regexp.rb @@ -3,7 +3,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end -# Regexp serialization/deserialization class Regexp # Deserializes JSON string by constructing new Regexp object with source diff --git a/ext/json/lib/json/add/struct.rb b/ext/json/lib/json/add/struct.rb index c9afe70770..d08d88237a 100644 --- a/ext/json/lib/json/add/struct.rb +++ b/ext/json/lib/json/add/struct.rb @@ -3,7 +3,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end -# Struct serialization/deserialization class Struct # Deserializes JSON string by constructing new Struct object with values diff --git a/ext/json/lib/json/add/symbol.rb b/ext/json/lib/json/add/symbol.rb index 831e5c6173..31b56a294f 100644 --- a/ext/json/lib/json/add/symbol.rb +++ b/ext/json/lib/json/add/symbol.rb @@ -3,7 +3,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end -# Symbol serialization/deserialization class Symbol # Returns a hash, that will be turned into a JSON object and represent this # object. diff --git a/ext/json/lib/json/add/time.rb b/ext/json/lib/json/add/time.rb index 18e57d7555..80b6434f17 100644 --- a/ext/json/lib/json/add/time.rb +++ b/ext/json/lib/json/add/time.rb @@ -3,7 +3,6 @@ unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end -# Time serialization/deserialization class Time # Deserializes JSON string by converting time since epoch to Time |