summaryrefslogtreecommitdiff
path: root/lib/rss/1.0.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rss/1.0.rb')
-rw-r--r--lib/rss/1.0.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/rss/1.0.rb b/lib/rss/1.0.rb
index 03d118a444..a945434fbf 100644
--- a/lib/rss/1.0.rb
+++ b/lib/rss/1.0.rb
@@ -55,11 +55,6 @@ module RSS
tag_name_with_prefix(PREFIX)
end
- private
- def children
- [@channel, @image, @textinput, *@item]
- end
-
class Li < Element
include RSS10
@@ -125,11 +120,6 @@ module RSS
target << li.resource
end
end
-
- private
- def children
- @li
- end
end
class Bag < Element
@@ -167,11 +157,6 @@ module RSS
target << li.resource
end
end
-
- private
- def children
- @li
- end
end
class Channel < Element
@@ -214,10 +199,6 @@ module RSS
end
private
- def children
- [@image, @items, @textinput]
- end
-
def maker_target(maker)
maker.channel
end
@@ -320,11 +301,6 @@ module RSS
[]
end
end
-
- private
- def children
- [@Seq]
- end
end
end