aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dependable.rb
diff options
context:
space:
mode:
authorMike McQuaid2017-04-23 16:23:12 +0100
committerGitHub2017-04-23 16:23:12 +0100
commitf3dc06a4e7e81304b335bd0f34ef748b9d1a35a6 (patch)
treee477b153613853aa26091920cf9fc407688fdad2 /Library/Homebrew/dependable.rb
parente7e53b89fce480cb4f35d801cc293ef23787fcaf (diff)
parent45a7730f61ab24a0e5e3bc00d757a4521c2e1c1d (diff)
downloadbrew-f3dc06a4e7e81304b335bd0f34ef748b9d1a35a6.tar.bz2
Merge pull request #2532 from MikeMcQuaid/fix-todo
Fix and remove various TODOs.
Diffstat (limited to 'Library/Homebrew/dependable.rb')
-rw-r--r--Library/Homebrew/dependable.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/Library/Homebrew/dependable.rb b/Library/Homebrew/dependable.rb
index 0834b08ec..785eb94d8 100644
--- a/Library/Homebrew/dependable.rb
+++ b/Library/Homebrew/dependable.rb
@@ -20,8 +20,6 @@ module Dependable
end
def required?
- # FIXME: Should `required?` really imply `!build?`? And if so, why doesn't
- # any of `optional?` and `recommended?` equally imply `!build?`?
!build? && !optional? && !recommended?
end