aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/brew.rb
diff options
context:
space:
mode:
authorMike McQuaid2017-04-23 15:10:18 +0100
committerMike McQuaid2017-04-23 15:10:18 +0100
commit45a7730f61ab24a0e5e3bc00d757a4521c2e1c1d (patch)
treee477b153613853aa26091920cf9fc407688fdad2 /Library/Homebrew/brew.rb
parente7e53b89fce480cb4f35d801cc293ef23787fcaf (diff)
downloadbrew-45a7730f61ab24a0e5e3bc00d757a4521c2e1c1d.tar.bz2
Fix and remove various TODOs.
Fix those that can be done so without tearing Homebrew to pieces and remove the comments for those that can never be done.
Diffstat (limited to 'Library/Homebrew/brew.rb')
-rw-r--r--Library/Homebrew/brew.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Homebrew/brew.rb b/Library/Homebrew/brew.rb
index aa38b54f4..62cfd79c3 100644
--- a/Library/Homebrew/brew.rb
+++ b/Library/Homebrew/brew.rb
@@ -23,8 +23,7 @@ end
def require?(path)
require path
rescue LoadError => e
- # HACK: ( because we should raise on syntax errors but
- # not if the file doesn't exist. TODO make robust!
+ # we should raise on syntax errors but not if the file doesn't exist.
raise unless e.to_s.include? path
end