From 9539d9a84e39e1cff321a4f10cf3adda8f382447 Mon Sep 17 00:00:00 2001 From: Erik Michaels-Ober Date: Sat, 2 Apr 2011 11:15:23 -0700 Subject: [PATCH] Cleanup changes from ce64c7818f9b62cf91f1fa5dc2e76a9d4205cd2e --- lib/twitter.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/twitter.rb b/lib/twitter.rb index dffdb2092..da744d184 100644 --- a/lib/twitter.rb +++ b/lib/twitter.rb @@ -21,8 +21,7 @@ def self.method_missing(method, *args, &block) client.send(method, *args, &block) end - # Delegate to Twitter::Client def self.respond_to?(method) - return client.respond_to?(method) || super + client.respond_to?(method) || super end end