From adcd6486a2be9d0eed0d57e85ac914ec4d895a21 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 3 Jul 2014 11:33:45 -0700 Subject: [PATCH] terraform: Context doesn't need a sync.Cond --- terraform/context.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/terraform/context.go b/terraform/context.go index 44a3e2c10..49463e575 100644 --- a/terraform/context.go +++ b/terraform/context.go @@ -29,7 +29,6 @@ type Context struct { variables map[string]string l sync.Mutex - cond *sync.Cond runCh <-chan struct{} sh *stopHook } @@ -67,7 +66,6 @@ func NewContext(opts *ContextOpts) *Context { providers: opts.Providers, variables: opts.Variables, - cond: sync.NewCond(new(sync.Mutex)), sh: sh, } }