Satistfy codacy

This commit is contained in:
chimp1984 2020-08-28 07:39:23 -05:00
parent fa5a58d41a
commit c218b28755
No known key found for this signature in database
GPG Key ID: 9801B4EC591F90E3

View File

@ -101,22 +101,27 @@ public class SeedNodeMain extends ExecutableForAppWithP2p {
injector.getInstance(P2PService.class).addP2PServiceListener(new P2PServiceListener() { injector.getInstance(P2PService.class).addP2PServiceListener(new P2PServiceListener() {
@Override @Override
public void onDataReceived() { public void onDataReceived() {
// Do nothing
} }
@Override @Override
public void onNoSeedNodeAvailable() { public void onNoSeedNodeAvailable() {
// Do nothing
} }
@Override @Override
public void onNoPeersAvailable() { public void onNoPeersAvailable() {
// Do nothing
} }
@Override @Override
public void onUpdatedDataReceived() { public void onUpdatedDataReceived() {
// Do nothing
} }
@Override @Override
public void onTorNodeReady() { public void onTorNodeReady() {
// Do nothing
} }
@Override @Override
@ -126,10 +131,12 @@ public class SeedNodeMain extends ExecutableForAppWithP2p {
@Override @Override
public void onSetupFailed(Throwable throwable) { public void onSetupFailed(Throwable throwable) {
// Do nothing
} }
@Override @Override
public void onRequestCustomBridges() { public void onRequestCustomBridges() {
// Do nothing
} }
}); });
} }