mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-29 00:57:17 -04:00
Remove unnecessary calls to super() in view classes
This commit is contained in:
parent
ba66845c74
commit
d660b74b13
8 changed files with 0 additions and 8 deletions
|
@ -56,7 +56,6 @@ public class AccountViewCB extends CachedViewCB {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private AccountViewCB(AccountPM model, ViewLoader viewLoader, Navigation navigation) {
|
private AccountViewCB(AccountPM model, ViewLoader viewLoader, Navigation navigation) {
|
||||||
super();
|
|
||||||
this.model = model;
|
this.model = model;
|
||||||
this.viewLoader = viewLoader;
|
this.viewLoader = viewLoader;
|
||||||
this.navigation = navigation;
|
this.navigation = navigation;
|
||||||
|
|
|
@ -50,7 +50,6 @@ public class ArbitratorSettingsViewCB extends CachedViewCB {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private ArbitratorSettingsViewCB(ViewLoader viewLoader, Navigation navigation, Stage primaryStage) {
|
private ArbitratorSettingsViewCB(ViewLoader viewLoader, Navigation navigation, Stage primaryStage) {
|
||||||
super();
|
|
||||||
this.viewLoader = viewLoader;
|
this.viewLoader = viewLoader;
|
||||||
this.navigation = navigation;
|
this.navigation = navigation;
|
||||||
this.primaryStage = primaryStage;
|
this.primaryStage = primaryStage;
|
||||||
|
|
|
@ -102,7 +102,6 @@ public class ArbitratorRegistrationViewCB extends CachedViewCB {
|
||||||
@Inject
|
@Inject
|
||||||
private ArbitratorRegistrationViewCB(Persistence persistence, WalletService walletService,
|
private ArbitratorRegistrationViewCB(Persistence persistence, WalletService walletService,
|
||||||
MessageService messageService, User user, BSFormatter formatter) {
|
MessageService messageService, User user, BSFormatter formatter) {
|
||||||
super();
|
|
||||||
this.persistence = persistence;
|
this.persistence = persistence;
|
||||||
this.walletService = walletService;
|
this.walletService = walletService;
|
||||||
this.messageService = messageService;
|
this.messageService = messageService;
|
||||||
|
|
|
@ -63,7 +63,6 @@ public class AccountSettingsViewCB extends CachedViewCB {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private AccountSettingsViewCB(ViewLoader viewLoader, Navigation navigation) {
|
private AccountSettingsViewCB(ViewLoader viewLoader, Navigation navigation) {
|
||||||
super();
|
|
||||||
this.viewLoader = viewLoader;
|
this.viewLoader = viewLoader;
|
||||||
this.navigation = navigation;
|
this.navigation = navigation;
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,6 @@ public class AccountSetupViewCB extends ViewCB implements MultiStepNavigation {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private AccountSetupViewCB(ViewLoader viewLoader, Navigation navigation) {
|
private AccountSetupViewCB(ViewLoader viewLoader, Navigation navigation) {
|
||||||
super();
|
|
||||||
this.viewLoader = viewLoader;
|
this.viewLoader = viewLoader;
|
||||||
this.navigation = navigation;
|
this.navigation = navigation;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,6 @@ public class PortfolioViewCB extends CachedViewCB {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
PortfolioViewCB(ViewLoader viewLoader, Navigation navigation, TradeManager tradeManager) {
|
PortfolioViewCB(ViewLoader viewLoader, Navigation navigation, TradeManager tradeManager) {
|
||||||
super();
|
|
||||||
this.viewLoader = viewLoader;
|
this.viewLoader = viewLoader;
|
||||||
this.navigation = navigation;
|
this.navigation = navigation;
|
||||||
this.tradeManager = tradeManager;
|
this.tradeManager = tradeManager;
|
||||||
|
|
|
@ -52,7 +52,6 @@ public class SettingsViewCB extends CachedViewCB {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
SettingsViewCB(ViewLoader viewLoader, Navigation navigation, Preferences preferences) {
|
SettingsViewCB(ViewLoader viewLoader, Navigation navigation, Preferences preferences) {
|
||||||
super();
|
|
||||||
this.viewLoader = viewLoader;
|
this.viewLoader = viewLoader;
|
||||||
this.navigation = navigation;
|
this.navigation = navigation;
|
||||||
this.preferences = preferences;
|
this.preferences = preferences;
|
||||||
|
|
|
@ -68,7 +68,6 @@ public class TradeViewCB extends CachedViewCB implements TradeNavigator {
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
protected TradeViewCB(ViewLoader viewLoader, Navigation navigation) {
|
protected TradeViewCB(ViewLoader viewLoader, Navigation navigation) {
|
||||||
super();
|
|
||||||
this.viewLoader = viewLoader;
|
this.viewLoader = viewLoader;
|
||||||
this.navigation = navigation;
|
this.navigation = navigation;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue