Skip to content

Commit 9dfd13a

Browse files
committed
fix all warnings
1 parent 566ba9c commit 9dfd13a

29 files changed

+630
-365
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
run: dart format --output=none --set-exit-if-changed .
103103

104104
- name: Analyze project
105-
run: dart analyze --fatal-infos
105+
run: dart analyze
106106

107107
- name: Run tests
108108
run: dart test

example/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:servicestack/client.dart';
22
import 'test.dtos.dart';
33

4-
main() async {
4+
Future<void> main() async {
55
var client = JsonServiceClient("https://test.servicestack.net");
66

77
var request = Hello(name: "World");

0 commit comments

Comments
 (0)