mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 15:00:30 +01:00
fix missing annotation
This commit is contained in:
parent
c6f07ed945
commit
a8494a993a
2 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
|||
package bisq.core.notifications;
|
||||
|
||||
import javax.inject.Inject;
|
||||
import javax.inject.Singleton;
|
||||
|
||||
import com.google.common.base.Charsets;
|
||||
|
||||
|
@ -33,6 +34,7 @@ import java.security.NoSuchAlgorithmException;
|
|||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
@Slf4j
|
||||
@Singleton
|
||||
public class MobileMessageEncryption {
|
||||
private SecretKeySpec keySpec;
|
||||
private Cipher cipher;
|
||||
|
|
|
@ -24,6 +24,7 @@ import bisq.core.app.WalletAppSetup;
|
|||
import bisq.core.locale.CurrencyUtil;
|
||||
import bisq.core.locale.Res;
|
||||
import bisq.core.network.p2p.seed.DefaultSeedNodeRepository;
|
||||
import bisq.core.notifications.MobileMessageEncryption;
|
||||
import bisq.core.notifications.MobileModel;
|
||||
import bisq.core.notifications.MobileNotificationService;
|
||||
import bisq.core.notifications.MobileNotificationValidator;
|
||||
|
@ -118,6 +119,7 @@ public class GuiceSetupTest {
|
|||
assertSingleton(PersistenceProtoResolver.class);
|
||||
assertSingleton(CorePersistenceProtoResolver.class);
|
||||
assertTrue(injector.getInstance(PersistenceProtoResolver.class) instanceof CorePersistenceProtoResolver);
|
||||
assertSingleton(MobileMessageEncryption.class);
|
||||
assertSingleton(MobileNotificationService.class);
|
||||
assertSingleton(MobileNotificationValidator.class);
|
||||
assertSingleton(MobileModel.class);
|
||||
|
|
Loading…
Add table
Reference in a new issue