Skip to content

Commit ef28c48

Browse files
committed
Fix analysis warnings acros monorepo
1 parent df98384 commit ef28c48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extras/encryption/integration_test/drift_encryption_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Future<void> main() async {
9292
}
9393

9494
class EmptyDb extends GeneratedDatabase {
95-
EmptyDb(QueryExecutor q) : super(q);
95+
EmptyDb(super.q);
9696
@override
9797
final List<TableInfo> allTables = const [];
9898
@override

extras/encryption/lib/encrypted_drift.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// Encryption support for drift, built with the [sqflite_sqlcipher](https://github.com/davidmartos96/sqflite_sqlcipher)
22
/// library.
3-
library encrypted_drift;
3+
library;
44

55
// this file should be kept in sync with drift_sqflite/lib/drift_sqflite.dart
66

0 commit comments

Comments
 (0)