From 1c153f7781f1715d035e396323597d620b4342d0 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Sat, 9 Jun 2018 10:14:13 +0200 Subject: [PATCH] Remove `Locations` module. --- Library/Homebrew/cask/lib/hbc.rb | 3 --- Library/Homebrew/cask/lib/hbc/locations.rb | 11 ----------- 2 files changed, 14 deletions(-) delete mode 100644 Library/Homebrew/cask/lib/hbc/locations.rb diff --git a/Library/Homebrew/cask/lib/hbc.rb b/Library/Homebrew/cask/lib/hbc.rb index 6c014b1791..efce21391e 100644 --- a/Library/Homebrew/cask/lib/hbc.rb +++ b/Library/Homebrew/cask/lib/hbc.rb @@ -15,7 +15,6 @@ require "hbc/download" require "hbc/download_strategy" require "hbc/exceptions" require "hbc/installer" -require "hbc/locations" require "hbc/config" require "hbc/macos" require "hbc/pkg" @@ -28,8 +27,6 @@ require "hbc/verify" require "hbc/version" module Hbc - include Locations - def self.init Cache.ensure_cache_exists Caskroom.ensure_caskroom_exists diff --git a/Library/Homebrew/cask/lib/hbc/locations.rb b/Library/Homebrew/cask/lib/hbc/locations.rb deleted file mode 100644 index 9a910f8e8b..0000000000 --- a/Library/Homebrew/cask/lib/hbc/locations.rb +++ /dev/null @@ -1,11 +0,0 @@ - -module Hbc - module Locations - def self.included(base) - base.extend(ClassMethods) - end - - module ClassMethods - end - end -end