Skip to content

Commit 16b3e3e

Browse files
committed
Fixed warnings
1 parent 3fa9f0f commit 16b3e3e

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

lib/model/storage/storage_widget.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ class _StorageWidgetState extends State<StorageWidget> {
203203
}
204204

205205
void toggleWaitingFilter() {
206-
print("toggle waiting called in storage widget");
207206
Query(storage.tabs.tab()).toggleWaitingFilter();
208207
waitingFilter = Query(storage.tabs.tab()).getWaitingFilter();
209208
_refreshTasks();

lib/services/task_details.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ class _DetailRouteState extends State<DetailRoute> {
8585
}
8686
// ignore: use_build_context_synchronously
8787
return showDialog(
88+
// ignore: use_build_context_synchronously
8889
context: context,
8990
builder: (context) {
9091
return Utils.showAlertDialog(

lib/widgets/taskfunctions/query.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class Query {
4545
}
4646

4747
void toggleWaitingFilter() {
48-
print("toggle waiting called");
4948
_waitingFilter.writeAsStringSync(
5049
json.encode(!getWaitingFilter()),
5150
);

0 commit comments

Comments
 (0)