Make base class protected and remove Inject annotation

This commit is contained in:
Manfred Karrer 2019-04-09 12:10:03 -05:00
parent 44cf1dced7
commit a1be8a4ee7
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -42,8 +42,6 @@ import bisq.network.p2p.seed.SeedNodeRepository;
import bisq.common.storage.FileManager;
import javax.inject.Inject;
import de.jensd.fx.fontawesome.AwesomeIcon;
import javafx.scene.control.Button;
@ -111,13 +109,12 @@ public abstract class StateMonitorView<StH extends StateHash,
// Constructor, lifecycle
///////////////////////////////////////////////////////////////////////////////////////////
@Inject
public StateMonitorView(DaoStateService daoStateService,
DaoFacade daoFacade,
CycleService cycleService,
PeriodService periodService,
SeedNodeRepository seedNodeRepository,
File storageDir) {
protected StateMonitorView(DaoStateService daoStateService,
DaoFacade daoFacade,
CycleService cycleService,
PeriodService periodService,
SeedNodeRepository seedNodeRepository,
File storageDir) {
this.daoStateService = daoStateService;
this.daoFacade = daoFacade;
this.cycleService = cycleService;