aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb
index 8d89f74c3b..8aa0b42fe1 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -223,11 +223,6 @@ module ActionView
def radio_button(object_name, method, tag_value, options = {})
InstanceTag.new(object_name, method, self, nil, options.delete(:object)).to_radio_button_tag(tag_value, options)
end
-
-
- def label(object_name, method, options = {})
- InstanceTag.new(object_name, method, self, nil, options.delete(:object)).to_label_tag(options)
- end
end
class InstanceTag #:nodoc:
@@ -333,10 +328,6 @@ module ActionView
tag_text << ">True</option></select>"
end
- def to_label_tag(options = {})
- label_tag(options.delete(:text) || value(object).humanize, options.reverse_merge(:for => tag_id))
- end
-
def to_content_tag(tag_name, options = {})
content_tag(tag_name, value(object), options)
end