Remove superfluous util module includes
This commit is contained in:
parent
60c20565b2
commit
f00955dfa1
|
@ -5,8 +5,6 @@ module Vagrant
|
||||||
# installed and prints a warning if they're not detected or if the
|
# installed and prints a warning if they're not detected or if the
|
||||||
# version does not match the installed VirtualBox version.
|
# version does not match the installed VirtualBox version.
|
||||||
class CheckGuestAdditions
|
class CheckGuestAdditions
|
||||||
include Util
|
|
||||||
|
|
||||||
def initialize(app, env)
|
def initialize(app, env)
|
||||||
@app = app
|
@app = app
|
||||||
end
|
end
|
||||||
|
|
|
@ -7,7 +7,6 @@ module Vagrant
|
||||||
# exceptional events, and by providing a simple callback, can clean up
|
# exceptional events, and by providing a simple callback, can clean up
|
||||||
# in any erroneous case.
|
# in any erroneous case.
|
||||||
class Warden
|
class Warden
|
||||||
include Util
|
|
||||||
attr_accessor :actions, :stack
|
attr_accessor :actions, :stack
|
||||||
|
|
||||||
def initialize(actions, env)
|
def initialize(actions, env)
|
||||||
|
|
|
@ -10,8 +10,6 @@ module Vagrant
|
||||||
HOME_SUBDIRS = ["tmp", "boxes"]
|
HOME_SUBDIRS = ["tmp", "boxes"]
|
||||||
DEFAULT_VM = :default
|
DEFAULT_VM = :default
|
||||||
|
|
||||||
include Util
|
|
||||||
|
|
||||||
attr_reader :parent # Parent environment (in the case of multi-VMs)
|
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
|
attr_reader :vm_name # The name of the VM (internal name) which this environment represents
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue