Remove old commented code.

This commit is contained in:
Dain Nilsson 2022-04-04 11:59:15 +02:00
parent f86549738e
commit 2909df92d7
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8

View File

@ -16,18 +16,6 @@ abstract class FidoStateNotifier extends ApplicationStateNotifier<FidoState> {
Future<PinResult> unlock(String pin);
}
/*
final fidoPinProvider =
StateNotifierProvider.autoDispose.family<PinNotifier, bool, DevicePath>(
(ref, devicePath) => throw UnimplementedError(),
);
abstract class PinNotifier extends StateNotifier<bool> {
PinNotifier(bool unlocked) : super(unlocked);
Future<PinResult> unlock(String pin);
}
*/
abstract class LockedCollectionNotifier<T>
extends StateNotifier<AsyncValue<List<T>>> {
LockedCollectionNotifier() : super(const AsyncValue.loading());