Bow to Codacy robot

Private constructors are OK if injection is used.
Empty methods are also ok if requires for interface...
This commit is contained in:
chimp1984 2020-08-12 16:25:56 -05:00
parent 55b070f955
commit a9ce9f423e
No known key found for this signature in database
GPG key ID: 9801B4EC591F90E3
2 changed files with 7 additions and 6 deletions

View file

@ -117,6 +117,7 @@ public class AssetService implements DaoSetupService, DaoStateListener {
}
@Override
@SuppressWarnings({"EmptyMethod"})
public void start() {
}

View file

@ -112,12 +112,12 @@ public class AssetFeeView extends ActivatableView<GridPane, Void> implements Bsq
///////////////////////////////////////////////////////////////////////////////////////////
@Inject
private AssetFeeView(BsqFormatter bsqFormatter,
BsqWalletService bsqWalletService,
BsqValidator bsqValidator,
AssetService assetService,
DaoStateService daoStateService,
@Named(FormattingUtils.BTC_FORMATTER_KEY) CoinFormatter btcFormatter) {
public AssetFeeView(BsqFormatter bsqFormatter,
BsqWalletService bsqWalletService,
BsqValidator bsqValidator,
AssetService assetService,
DaoStateService daoStateService,
@Named(FormattingUtils.BTC_FORMATTER_KEY) CoinFormatter btcFormatter) {
this.bsqFormatter = bsqFormatter;
this.bsqWalletService = bsqWalletService;
this.bsqValidator = bsqValidator;