Skip to content

Commit

Permalink
style: format files
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreamatias-worldline committed Jun 3, 2024
1 parent e9b4407 commit 511739a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/data/datasources/local/default_local_datasource.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class DefaultLocalDataSource implements LocalDataSource {
return Future.value(Left(UnknownError()));
}
}

@override
Future<Either<MainError, bool>> getBool() {
throw UnimplementedError();
Expand Down
2 changes: 1 addition & 1 deletion lib/data/datasources/remote/default_remote_datasource.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class DefaultRemoteDatasource implements RemoteDatasource {
(right) => ExampleDto.fromJson(right).toModel(),
);
}

@override
Future<Either<MainError, void>> saveExample() {
throw UnimplementedError();
Expand Down
2 changes: 1 addition & 1 deletion lib/data/repositories/example/example_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ExampleRepositoryImpl implements ExampleRepository {
Future<Either<MainError, List<Example>>> get() {
return _remoteDatasource.getExample();
}

@override
Future<Either<MainError, void>> save() {
throw UnimplementedError();
Expand Down
2 changes: 1 addition & 1 deletion lib/data/repositories/system/system_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SystemRepositoryImpl implements SystemRepository {
Future<Either<MainError, Env>> get() {
return _localDatasource.getEnvironment();
}

@override
Future<Either<MainError, bool>> save() {
throw UnimplementedError();
Expand Down

0 comments on commit 511739a

Please sign in to comment.