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