diff --git a/plugins/providers/docker/action/host_machine.rb b/plugins/providers/docker/action/host_machine.rb deleted file mode 100644 index 646d6f97a..000000000 --- a/plugins/providers/docker/action/host_machine.rb +++ /dev/null @@ -1,17 +0,0 @@ -module VagrantPlugins - module DockerProvider - module Action - # This action is responsible for creating the host machine if - # we need to. - class HostMachine - def initialize(app, env) - @app = app - end - - def call(env) - @app.call(env) - end - end - end - end -end