Remove unused variables

This commit is contained in:
Jack Nagel 2013-12-12 15:42:31 -06:00
parent 55db2f7e11
commit 6c04ccfb3b
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ module Homebrew extend self
require 'cmd/tap' require 'cmd/tap'
begin begin
install_tap $1, $2 install_tap $1, $2
rescue AlreadyTappedError => e rescue AlreadyTappedError
end end
end end
end unless ARGV.force? end unless ARGV.force?

View File

@ -63,7 +63,7 @@ module Homebrew extend self
tap_user, tap_repo = migration.split '/' tap_user, tap_repo = migration.split '/'
begin begin
install_tap tap_user, tap_repo install_tap tap_user, tap_repo
rescue AlreadyTappedError => e rescue AlreadyTappedError
end end
end if load_tap_migrations end if load_tap_migrations