summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/ext/psych/lib/psych/json/stream.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/ext/psych/lib/psych/json/stream.rb')
-rw-r--r--ruby_1_9_3/ext/psych/lib/psych/json/stream.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/ruby_1_9_3/ext/psych/lib/psych/json/stream.rb b/ruby_1_9_3/ext/psych/lib/psych/json/stream.rb
deleted file mode 100644
index be1a0a8a82..0000000000
--- a/ruby_1_9_3/ext/psych/lib/psych/json/stream.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'psych/json/ruby_events'
-require 'psych/json/yaml_events'
-
-module Psych
- module JSON
- class Stream < Psych::Visitors::JSONTree
- include Psych::JSON::RubyEvents
- include Psych::Streaming
-
- class Emitter < Psych::Stream::Emitter # :nodoc:
- include Psych::JSON::YAMLEvents
- end
- end
- end
-end