From 15baa498710abe5914ae6938827df717696868b8 Mon Sep 17 00:00:00 2001
From: Ernie Miller <ernie@metautonomo.us>
Date: Tue, 24 May 2011 11:09:59 -0400
Subject: Redundant condition in compute_asset_host is redundant.

---
 actionpack/lib/action_view/helpers/asset_paths.rb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'actionpack/lib')

diff --git a/actionpack/lib/action_view/helpers/asset_paths.rb b/actionpack/lib/action_view/helpers/asset_paths.rb
index 38810eea2e..1bc5c9e003 100644
--- a/actionpack/lib/action_view/helpers/asset_paths.rb
+++ b/actionpack/lib/action_view/helpers/asset_paths.rb
@@ -55,11 +55,11 @@ module ActionView
       # Pick an asset host for this source. Returns +nil+ if no host is set,
       # the host if no wildcard is set, the host interpolated with the
       # numbers 0-3 if it contains <tt>%d</tt> (the number is the source hash mod 4),
-      # or the value returned from invoking the proc if it's a proc or the value from
-      # invoking call if it's an object responding to call.
+      # or the value returned from invoking call on an object responding to call
+      # (proc or otherwise).
       def compute_asset_host(source)
         if host = config.asset_host
-          if host.is_a?(Proc) || host.respond_to?(:call)
+          if host.respond_to?(:call)
             case host.is_a?(Proc) ? host.arity : host.method(:call).arity
             when 2
               request = controller.respond_to?(:request) && controller.request
-- 
cgit v1.2.3