Fix analysis warnings

This commit is contained in:
Simon Binder 2020-04-17 22:35:27 +02:00
parent 86295536c7
commit 4190c807c9
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 2 additions and 2 deletions

View File

@ -335,11 +335,11 @@ void main() {
});
final a = db
.customSelectQuery("select 'a' as a")
.customSelect("select 'a' as a")
.map(($) => $.readString('a'))
.watchSingle();
final b = db
.customSelectQuery("select 'b' as b")
.customSelect("select 'b' as b")
.map(($) => $.readString('b'))
.watchSingle();
final c = a.switchMap((_) => b);