diff --git a/lib/src/trust/btbv.dart b/lib/src/trust/btbv.dart index 2b7cf32..abb125d 100644 --- a/lib/src/trust/btbv.dart +++ b/lib/src/trust/btbv.dart @@ -214,11 +214,6 @@ abstract class BlindTrustBeforeVerificationTrustManager extends TrustManager { @visibleForOverriding Future commitState(); - /// Called when the user wants to restore the state of the trust manager. The format - /// and actual storage mechanism is left to the user. - @visibleForOverriding - Future loadState(); - @visibleForTesting BTBVTrustState getDeviceTrust(String jid, int deviceId) => trustCache[RatchetMapKey(jid, deviceId)]!; } @@ -228,7 +223,4 @@ abstract class BlindTrustBeforeVerificationTrustManager extends TrustManager { class MemoryBTBVTrustManager extends BlindTrustBeforeVerificationTrustManager { @override Future commitState() async {} - - @override - Future loadState() async {} }