summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/ext/psych/lib/psych/json/tree_builder.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/ext/psych/lib/psych/json/tree_builder.rb')
-rw-r--r--ruby_1_9_3/ext/psych/lib/psych/json/tree_builder.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/ruby_1_9_3/ext/psych/lib/psych/json/tree_builder.rb b/ruby_1_9_3/ext/psych/lib/psych/json/tree_builder.rb
deleted file mode 100644
index b799c93f58..0000000000
--- a/ruby_1_9_3/ext/psych/lib/psych/json/tree_builder.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-require 'psych/json/yaml_events'
-
-module Psych
- module JSON
- ###
- # Psych::JSON::TreeBuilder is an event based AST builder. Events are sent
- # to an instance of Psych::JSON::TreeBuilder and a JSON AST is constructed.
- class TreeBuilder < Psych::TreeBuilder
- include Psych::JSON::YAMLEvents
- end
- end
-end