remove debugging code

This commit is contained in:
Christien Rioux 2023-08-18 00:32:44 -04:00
parent 2c779b2257
commit be45a1b350

View File

@ -23,7 +23,6 @@ String cryptoKindToString(CryptoKind kind) =>
const CryptoKind bestCryptoKind = cryptoKindVLD0;
Uint8List cryptoKindToBytes(CryptoKind kind) {
assert(kind == cryptoKindVLD0, 'xxx');
final b = Uint8List(4);
ByteData.sublistView(b).setUint32(0, kind);
return b;
@ -35,7 +34,6 @@ CryptoKind cryptoKindFromString(String s) {
}
final kind =
ByteData.sublistView(Uint8List.fromList(s.codeUnits)).getUint32(0);
assert(kind == cryptoKindVLD0, 'xxx');
return kind;
}