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

利用規約・プライバシーポリシーの更新確認を実施しないようにする #1136

Merged
merged 1 commit into from
Sep 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class SplashNavigationService : ISplashNavigationService
public Destination Destination { get; set; }
public INavigationParameters DestinationPageParameters { get; set; }

private TermsUpdateInfoModel _termsUpdateInfoModel;
private TermsUpdateInfoModel _termsUpdateInfoModel = new TermsUpdateInfoModel();

public SplashNavigationService(
INavigationService navigationService,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public override async void OnNavigatedTo(INavigationParameters parameters)
_splashNavigatoinService.Destination = destination;
_splashNavigatoinService.DestinationPageParameters = parameters;

await _splashNavigatoinService.Prepare();
await _splashNavigatoinService.NavigateNextAsync();

_loggerService.EndMethod();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public void OnNavigatedToTest()
Times.Once()
);

_mockSplashNavigationService.Verify(x => x.Prepare(), Times.Once());
_mockSplashNavigationService.Verify(x => x.NavigateNextAsync(false), Times.Once());
}
}
Expand Down