From 8a23349e3859a3cb51e905206d2118bcc6093e42 Mon Sep 17 00:00:00 2001 From: Frank Hunleth Date: Tue, 15 Oct 2019 14:58:33 -0400 Subject: [PATCH] Remove redundant Backend reset This is done in `VintageNetWizard.run_wizard`. --- example/lib/wizard_example/button.ex | 3 --- 1 file changed, 3 deletions(-) diff --git a/example/lib/wizard_example/button.ex b/example/lib/wizard_example/button.ex index 27577dac..d94325ec 100644 --- a/example/lib/wizard_example/button.ex +++ b/example/lib/wizard_example/button.ex @@ -38,9 +38,6 @@ defmodule WizardExample.Button do @impl true def handle_info(:timeout, state) do - # Reset the backend to make sure we start wizard - # in a clean state - :ok = VintageNetWizard.Backend.reset() :ok = VintageNetWizard.run_wizard() {:noreply, state} end