diff --git a/gui/src/main/java/io/bitsquare/gui/common/view/Wizard.java b/gui/src/main/java/io/bitsquare/gui/common/view/Wizard.java deleted file mode 100644 index 105e0fc8ac..0000000000 --- a/gui/src/main/java/io/bitsquare/gui/common/view/Wizard.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * This file is part of Bitsquare. - * - * Bitsquare is free software: you can redistribute it and/or modify it - * under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or (at - * your option) any later version. - * - * Bitsquare is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public - * License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with Bitsquare. If not, see . - */ - -package io.bitsquare.gui.common.view; - -public interface Wizard extends View { - void nextStep(Step currentStep); - - interface Step { - void hideWizardNavigation(); - - void setWizard(Wizard wizard); - } -} diff --git a/gui/src/main/java/io/bitsquare/gui/main/account/content/changepassword/ChangePasswordView.java b/gui/src/main/java/io/bitsquare/gui/main/account/content/changepassword/ChangePasswordView.java index c7ebec8791..a608076684 100644 --- a/gui/src/main/java/io/bitsquare/gui/main/account/content/changepassword/ChangePasswordView.java +++ b/gui/src/main/java/io/bitsquare/gui/main/account/content/changepassword/ChangePasswordView.java @@ -19,7 +19,6 @@ package io.bitsquare.gui.main.account.content.changepassword; import io.bitsquare.gui.common.view.FxmlView; import io.bitsquare.gui.common.view.InitializableView; -import io.bitsquare.gui.common.view.Wizard; import io.bitsquare.gui.main.help.Help; import io.bitsquare.gui.main.help.HelpId; import javafx.fxml.FXML; @@ -31,7 +30,7 @@ import javafx.scene.layout.HBox; import javax.inject.Inject; @FxmlView -public class ChangePasswordView extends InitializableView implements Wizard.Step { +public class ChangePasswordView extends InitializableView { @FXML HBox buttonsHBox; @@ -40,8 +39,6 @@ public class ChangePasswordView extends InitializableView