diff options
| author | Adam Vandenberg | 2013-06-13 09:34:27 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-06-13 09:34:43 -0700 | 
| commit | d5ce864d9a8f97aa6ff481fe54307604b8dc4816 (patch) | |
| tree | 472ce2c1f69b1bfb9a94779f25d8d94bb42dd02b | |
| parent | 3baaa6b5c8646aef3f96eeda03d973863ec9ec2c (diff) | |
| download | homebrew-d5ce864d9a8f97aa6ff481fe54307604b8dc4816.tar.bz2 | |
ScriptFileFormula: remove override warning
Closes #20445.
| -rw-r--r-- | Library/Homebrew/formula_specialties.rb | 8 | 
1 files changed, 0 insertions, 8 deletions
diff --git a/Library/Homebrew/formula_specialties.rb b/Library/Homebrew/formula_specialties.rb index e91c02dc0..2529243b2 100644 --- a/Library/Homebrew/formula_specialties.rb +++ b/Library/Homebrew/formula_specialties.rb @@ -5,14 +5,6 @@ class ScriptFileFormula < Formula    def install      bin.install Dir['*']    end - -  def self.method_added method -    super method -    case method -    when :install -      opoo "#{name}: if you are overriding ScriptFileFormula#install, use a Formula instead" -    end -  end  end  # See browser for an example  | 
