From ab19b506bde4b15f3721bf0fa9ecad5bc86c91ad Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 21 Mar 2013 22:01:20 -0700 Subject: [PATCH] Get rid of unnecessary variable --- lib/vagrant/util/safe_chdir.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/vagrant/util/safe_chdir.rb b/lib/vagrant/util/safe_chdir.rb index 386415d7c..44c2836f2 100644 --- a/lib/vagrant/util/safe_chdir.rb +++ b/lib/vagrant/util/safe_chdir.rb @@ -4,7 +4,6 @@ module Vagrant module Util class SafeChdir @@chdir_lock = Mutex.new - @@lock_holder = nil # Safely changes directory of this process by putting a lock around # it so that it is thread safe. This will yield a block and when the