summaryrefslogtreecommitdiff
path: root/lib/rdoc/single_class.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/single_class.rb')
-rw-r--r--lib/rdoc/single_class.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/rdoc/single_class.rb b/lib/rdoc/single_class.rb
deleted file mode 100644
index 9e77a65c73..0000000000
--- a/lib/rdoc/single_class.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-##
-# A singleton class
-
-class RDoc::SingleClass < RDoc::ClassModule
-
- ##
- # Adds the superclass to the included modules.
-
- def ancestors
- superclass ? super + [superclass] : super
- end
-
- ##
- # The definition of this singleton class, <tt>class << MyClassName</tt>
-
- def definition
- "class << #{full_name}"
- end
-
-end
-