aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2014-08-30 23:11:02 -0500
committerJack Nagel2014-08-30 23:11:02 -0500
commit9156f7405c6eaad30b0dac98c3356b27445594ed (patch)
tree5fa7bb48bde412137b3bb44da16daaae02e25e94
parent2b9e84bd9dc915652c07eb318b0a9a1108cda8b9 (diff)
downloadhomebrew-9156f7405c6eaad30b0dac98c3356b27445594ed.tar.bz2
Remove obsolete nil check
-rw-r--r--Library/Homebrew/test/test_compiler_selector.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_compiler_selector.rb b/Library/Homebrew/test/test_compiler_selector.rb
index c379e5713..93161fb62 100644
--- a/Library/Homebrew/test/test_compiler_selector.rb
+++ b/Library/Homebrew/test/test_compiler_selector.rb
@@ -15,7 +15,6 @@ class CompilerSelectorTests < Homebrew::TestCase
end
def fails_with?(cc)
- return false if cc.nil?
@failures.include?(cc.name)
end
end