Skip to content

Commit

Permalink
Delete unused packerRunner
Browse files Browse the repository at this point in the history
  • Loading branch information
orivej committed Sep 16, 2016
1 parent 55e51f5 commit 3381f96
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions common/multistep_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,6 @@ func NewRunnerWithPauseFn(steps []multistep.Step, config PackerConfig, ui packer
return runner
}

type packerRunner struct {
runner multistep.Runner
pauseFn interface{}
}

func (r *packerRunner) Run(s multistep.StateBag) { r.runner.Run(s) }
func (r *packerRunner) Cancel() { r.runner.Cancel() }
func (r *packerRunner) PauseFn() interface{} { return r.pauseFn }

func typeName(i interface{}) string {
return reflect.Indirect(reflect.ValueOf(i)).Type().Name()
}
Expand Down

0 comments on commit 3381f96

Please sign in to comment.