Remove superfluous util module includes

This commit is contained in:
Mitchell Hashimoto 2010-09-01 14:52:44 -07:00
parent 60c20565b2
commit f00955dfa1
3 changed files with 0 additions and 5 deletions

View File

@ -5,8 +5,6 @@ module Vagrant
# installed and prints a warning if they're not detected or if the
# version does not match the installed VirtualBox version.
class CheckGuestAdditions
include Util
def initialize(app, env)
@app = app
end

View File

@ -7,7 +7,6 @@ module Vagrant
# exceptional events, and by providing a simple callback, can clean up
# in any erroneous case.
class Warden
include Util
attr_accessor :actions, :stack
def initialize(actions, env)

View File

@ -10,8 +10,6 @@ module Vagrant
HOME_SUBDIRS = ["tmp", "boxes"]
DEFAULT_VM = :default
include Util
attr_reader :parent # Parent environment (in the case of multi-VMs)
attr_reader :vm_name # The name of the VM (internal name) which this environment represents