Skip to content

Commit

Permalink
Fix analysis warnings acros monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Jan 21, 2025
1 parent df98384 commit ef28c48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Future<void> main() async {
}

class EmptyDb extends GeneratedDatabase {
EmptyDb(QueryExecutor q) : super(q);
EmptyDb(super.q);
@override
final List<TableInfo> allTables = const [];
@override
Expand Down
2 changes: 1 addition & 1 deletion extras/encryption/lib/encrypted_drift.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// Encryption support for drift, built with the [sqflite_sqlcipher](https://github.com/davidmartos96/sqflite_sqlcipher)
/// library.
library encrypted_drift;
library;

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

Expand Down

0 comments on commit ef28c48

Please sign in to comment.