aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2019-02-26 10:07:46 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2019-02-26 10:07:46 -0800
commit082130d1d43620ca29c2f2f169a5059fa0065a8c (patch)
treecdad5a480ac4d6fd5d9592668527f2716b2d2d20 /actionview
parentebb4e015c9a8b1307d5f3564978f6e24ac2b7c4a (diff)
downloadrails-082130d1d43620ca29c2f2f169a5059fa0065a8c.tar.gz
rails-082130d1d43620ca29c2f2f169a5059fa0065a8c.tar.bz2
rails-082130d1d43620ca29c2f2f169a5059fa0065a8c.zip
Remove unused method / fix documentation
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/template/resolver.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/actionview/lib/action_view/template/resolver.rb b/actionview/lib/action_view/template/resolver.rb
index b346acf7e0..1c463efbb2 100644
--- a/actionview/lib/action_view/template/resolver.rb
+++ b/actionview/lib/action_view/template/resolver.rb
@@ -170,12 +170,7 @@ module ActionView
# because Resolver guarantees that the arguments are present and
# normalized.
def find_templates(name, prefix, partial, details, outside_app_allowed = false, locals = [])
- raise NotImplementedError, "Subclasses must implement a find_templates(name, prefix, partial, details, outside_app_allowed = false) method"
- end
-
- # Helpers that builds a path. Useful for building virtual paths.
- def build_path(name, prefix, partial)
- Path.build(name, prefix, partial)
+ raise NotImplementedError, "Subclasses must implement a find_templates(name, prefix, partial, details, outside_app_allowed = false, locals = []) method"
end
# Handles templates caching. If a key is given and caching is on