Remove unnecessary calls to super() in view classes

This commit is contained in:
Chris Beams 2014-11-22 15:27:22 +01:00
parent ba66845c74
commit d660b74b13
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73
8 changed files with 0 additions and 8 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -63,7 +63,6 @@ public class AccountSettingsViewCB extends CachedViewCB {
@Inject
private AccountSettingsViewCB(ViewLoader viewLoader, Navigation navigation) {
super();
this.viewLoader = viewLoader;
this.navigation = navigation;
}

View File

@ -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;
}

View File

@ -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;

View File

@ -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;

View File

@ -68,7 +68,6 @@ public class TradeViewCB extends CachedViewCB implements TradeNavigator {
///////////////////////////////////////////////////////////////////////////////////////////
protected TradeViewCB(ViewLoader viewLoader, Navigation navigation) {
super();
this.viewLoader = viewLoader;
this.navigation = navigation;
}