diff options
| author | Mike McQuaid | 2016-09-17 15:17:27 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2016-09-17 16:14:13 +0100 |
| commit | 6693915399a5d9f1f09255c5008d2cc1209f7662 (patch) | |
| tree | a4cf8f1f273ebf5679c418fbf896cf320a84ef76 /Library/Homebrew/formula_support.rb | |
| parent | 299dffd903182bd4ab65828ae2347d415de7b259 (diff) | |
| download | brew-6693915399a5d9f1f09255c5008d2cc1209f7662.tar.bz2 | |
rubocop --auto-correct all remaining files.
But remove some manual `.freeze`s on constants that shouldn't be
constants.
Diffstat (limited to 'Library/Homebrew/formula_support.rb')
| -rw-r--r-- | Library/Homebrew/formula_support.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_support.rb b/Library/Homebrew/formula_support.rb index c649bf502..83855d131 100644 --- a/Library/Homebrew/formula_support.rb +++ b/Library/Homebrew/formula_support.rb @@ -58,7 +58,7 @@ end # Used to annotate formulae that don't require compiling or cannot build bottle. class BottleDisableReason - SUPPORTED_TYPES = [:unneeded, :disable] + SUPPORTED_TYPES = [:unneeded, :disable].freeze def initialize(type, reason) @type = type |
