From 2bbc98694a56d406c350644fb62e11a64c5834c8 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 12 Jul 2014 23:11:07 -0500 Subject: [PATCH] Simplify early return condition Improvements to formula/bottle integration means we can be less defensive here. --- Library/Homebrew/bottles.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Library/Homebrew/bottles.rb b/Library/Homebrew/bottles.rb index 37d6033eac..5be1615f4c 100644 --- a/Library/Homebrew/bottles.rb +++ b/Library/Homebrew/bottles.rb @@ -16,8 +16,7 @@ end def bottle_file_outdated? f, file filename = file.basename.to_s - return nil unless f and f.bottle and f.bottle.url \ - and filename.match(bottle_regex) + return unless f.bottle && filename.match(bottle_regex) bottle_ext = filename[bottle_native_regex, 1] bottle_url_ext = f.bottle.url[bottle_native_regex, 1]