From 3dd2715ec8fe3505b99386b56fbe1df25b41b3da Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Sun, 23 Jun 2013 13:02:02 -0700 Subject: [PATCH] remove no-op code in bottle.rb ARGV.formulae returns formulae, so no need to pass through factory --- Library/Homebrew/cmd/bottle.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb index f868c00b90..274e3ea6af 100644 --- a/Library/Homebrew/cmd/bottle.rb +++ b/Library/Homebrew/cmd/bottle.rb @@ -101,7 +101,7 @@ module Homebrew extend self end ARGV.formulae.each do |f| - bottle_formula Formula.factory f + bottle_formula f end end end