summaryrefslogtreecommitdiff
path: root/lib/services/local_shift_provider_service.dart
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-08-17 15:39:30 +0200
committerAldrik Ramaekers <aldrik@amftech.nl>2022-08-17 15:39:30 +0200
commitf136438a6c3df6403d5a935c730ea5a66d017ffe (patch)
tree44e0b259ed06b4eaf8b007e7a2dd0db894652fc2 /lib/services/local_shift_provider_service.dart
parent8ed1b574e8b5e9fc806aedc87af7aabcf73da6e6 (diff)
work
Diffstat (limited to 'lib/services/local_shift_provider_service.dart')
-rw-r--r--lib/services/local_shift_provider_service.dart2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/services/local_shift_provider_service.dart b/lib/services/local_shift_provider_service.dart
index 2d00a1e..6839dff 100644
--- a/lib/services/local_shift_provider_service.dart
+++ b/lib/services/local_shift_provider_service.dart
@@ -34,7 +34,6 @@ class LocalShiftProviderService extends IProgramProviderService {
final file = await _localFile;
String content = jsonEncode(shifts);
await file.writeAsString(content);
- print('Writing to file: ' + content);
} catch (e, stacktrace) {
print(stacktrace);
print(e);
@@ -48,7 +47,6 @@ class LocalShiftProviderService extends IProgramProviderService {
final Iterable iterable = await jsonDecode(contents);
List<Shift> data =
List<Shift>.from(iterable.map((model) => Shift.fromJson(model)));
- print('Read from file: ' + contents);
return data;
} catch (e, stacktrace) {