Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Commit

Permalink
Fixed code-smells
Browse files Browse the repository at this point in the history
  • Loading branch information
cocoa-dev004 committed Jul 12, 2022
1 parent b4a7db3 commit b3b4c8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Covid19Radar/Covid19Radar.Android/MainApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private Lazy<AbsExposureDetectionBackgroundService> _exposureDetectionBackground
private readonly Lazy<AbsEventLogSubmissionBackgroundService> _eventLogSubmissionBackgroundService
= new Lazy<AbsEventLogSubmissionBackgroundService>(() => ContainerLocator.Current.Resolve<AbsEventLogSubmissionBackgroundService>());

private Lazy<AbsDataMaintainanceBackgroundService> _dataMaintainanceService
private readonly Lazy<AbsDataMaintainanceBackgroundService> _dataMaintainanceService
= new Lazy<AbsDataMaintainanceBackgroundService>(() => ContainerLocator.Current.Resolve<AbsDataMaintainanceBackgroundService>());

private Lazy<ILoggerService> _loggerService
Expand Down
2 changes: 1 addition & 1 deletion Covid19Radar/Covid19Radar.iOS/AppDelegate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private Lazy<AbsExposureDetectionBackgroundService> _exposureDetectionBackground
private readonly Lazy<AbsEventLogSubmissionBackgroundService> _eventLogSubmissionBackgroundService
= new Lazy<AbsEventLogSubmissionBackgroundService>(() => ContainerLocator.Current.Resolve<AbsEventLogSubmissionBackgroundService>());

private Lazy<AbsDataMaintainanceBackgroundService> _dataMaintainanceBackgroundService
private readonly Lazy<AbsDataMaintainanceBackgroundService> _dataMaintainanceBackgroundService
= new Lazy<AbsDataMaintainanceBackgroundService>(() => ContainerLocator.Current.Resolve<AbsDataMaintainanceBackgroundService>());

private Lazy<IExposureDetectionService> _exposureDetectionService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public abstract class AbsDataMaintainanceBackgroundService : IBackgroundService

private readonly IEventLogRepository _eventLogRepository;

public AbsDataMaintainanceBackgroundService(
protected AbsDataMaintainanceBackgroundService(
ILoggerService loggerService,
IEventLogRepository eventLogRepository)
{
Expand Down

0 comments on commit b3b4c8a

Please sign in to comment.