diff options
| author | Jack Nagel | 2013-03-28 17:37:29 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-03-28 17:37:29 -0500 | 
| commit | 0d45c3c0f254fab1e014b83166aa25ffb081afc0 (patch) | |
| tree | a38a7ba8c3c5f6ebf51dcaa1ef4e0bde605d85d0 /Library/Homebrew/formula_support.rb | |
| parent | f0db242591d17f374fe6ccae2ceef5583357ca62 (diff) | |
| download | brew-0d45c3c0f254fab1e014b83166aa25ffb081afc0.tar.bz2 | |
Suppress uninitialized instance variable warnings
Diffstat (limited to 'Library/Homebrew/formula_support.rb')
| -rw-r--r-- | Library/Homebrew/formula_support.rb | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/formula_support.rb b/Library/Homebrew/formula_support.rb index 40bb561b8..bbc82396d 100644 --- a/Library/Homebrew/formula_support.rb +++ b/Library/Homebrew/formula_support.rb @@ -10,6 +10,8 @@ class SoftwareSpec      @version = version      @mirrors = []      @specs = {} +    @checksum = nil +    @using = nil    end    def download_strategy  | 
