From f00955dfa1aa0b09d0421a3d6e320599cbc5908c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 1 Sep 2010 14:52:44 -0700 Subject: [PATCH] Remove superfluous util module includes --- lib/vagrant/action/vm/check_guest_additions.rb | 2 -- lib/vagrant/action/warden.rb | 1 - lib/vagrant/environment.rb | 2 -- 3 files changed, 5 deletions(-) diff --git a/lib/vagrant/action/vm/check_guest_additions.rb b/lib/vagrant/action/vm/check_guest_additions.rb index a9f151e9b..34a2c308d 100644 --- a/lib/vagrant/action/vm/check_guest_additions.rb +++ b/lib/vagrant/action/vm/check_guest_additions.rb @@ -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 diff --git a/lib/vagrant/action/warden.rb b/lib/vagrant/action/warden.rb index 6e11a9ee9..857c7d03d 100644 --- a/lib/vagrant/action/warden.rb +++ b/lib/vagrant/action/warden.rb @@ -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) diff --git a/lib/vagrant/environment.rb b/lib/vagrant/environment.rb index 0a06485ea..06842ca56 100644 --- a/lib/vagrant/environment.rb +++ b/lib/vagrant/environment.rb @@ -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