feat: Remove unused helper functions

This commit is contained in:
2023-06-17 23:27:10 +02:00
parent c086579b57
commit ddb4483d4a
3 changed files with 2 additions and 62 deletions

View File

@@ -43,23 +43,6 @@ int generateRandom32BitNumber() {
return Random.secure().nextInt(4294967295 /*pow(2, 32) - 1*/);
}
OmemoPublicKey? decodeKeyIfNotNull(
Map<String, dynamic> map,
String key,
KeyPairType type,
) {
if (map[key] == null) return null;
return OmemoPublicKey.fromBytes(
base64.decode(map[key]! as String),
type,
);
}
int getTimestamp() {
return DateTime.now().millisecondsSinceEpoch;
}
/// Describes the differences between two lists in terms of its items.
class ListDiff<T> {
ListDiff(this.added, this.removed);
@@ -90,7 +73,8 @@ extension AppendToListOrCreateExtension<K, V> on Map<K, List<V>> {
if (containsKey(key)) {
if (!checkExistence) {
this[key]!.add(value);
} if (!this[key]!.contains(value)) {
}
if (!this[key]!.contains(value)) {
this[key]!.add(value);
}
} else {

View File

@@ -5,7 +5,6 @@ class OmemoIncomingStanza {
const OmemoIncomingStanza(
this.bareSenderJid,
this.senderDeviceId,
this.timestamp,
this.keys,
this.payload,
this.isCatchup,
@@ -17,9 +16,6 @@ class OmemoIncomingStanza {
/// The device ID of the sender.
final int senderDeviceId;
/// The timestamp when the stanza was received.
final int timestamp;
/// The included encrypted keys for our own JID
final List<EncryptedKey> keys;