From 543f2a68e9c9fbda3e75f4c4883fef1248cb83f9 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 22 Mar 2014 13:16:16 -0500 Subject: [PATCH] Don't send, just call the method directly --- Library/Homebrew/cmd/cleanup.rb | 2 +- Library/Homebrew/tab.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/cleanup.rb b/Library/Homebrew/cmd/cleanup.rb index 69b55ddd05..732883e1a6 100644 --- a/Library/Homebrew/cmd/cleanup.rb +++ b/Library/Homebrew/cmd/cleanup.rb @@ -114,7 +114,7 @@ class Formula select{ |ff| ff.deps.map{ |d| d.to_s }.include? name }. map{ |ff| ff.rack.subdirs rescue [] }. flatten. - map{ |keg_path| Tab.for_keg(keg_path).send("HEAD") }. + map{ |keg_path| Tab.for_keg(keg_path).HEAD }. include? nil end end diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb index dd9bbb369c..ed729a706f 100644 --- a/Library/Homebrew/tab.rb +++ b/Library/Homebrew/tab.rb @@ -124,7 +124,7 @@ class Tab < OpenStruct :poured_from_bottle => poured_from_bottle, :tapped_from => tapped_from, :time => time, - :HEAD => send("HEAD"), + :HEAD => self.HEAD, :stdlib => (stdlib.to_s if stdlib), :compiler => (compiler.to_s if compiler)}) end