Skip to content

Commit

Permalink
changes from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
aurorahey committed Feb 25, 2022
1 parent be48c2a commit 28dc87a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dotnet/Data/WishListRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public async Task VerifySchema()
}
}

private async Task<string> firstScroll()
private async Task<string> FirstScroll()
{
var client = _clientFactory.CreateClient();
var request = new HttpRequestMessage
Expand All @@ -266,7 +266,7 @@ private async Task<string> firstScroll()
return responseContent;
}

private async Task<string> subScroll()
private async Task<string> SubScroll()
{
var client = _clientFactory.CreateClient();
var request = new HttpRequestMessage
Expand Down Expand Up @@ -300,13 +300,13 @@ public async Task<WishListsWrapper> GetAllLists()
{
if( i == 0)
{
var res = await firstScroll();
var res = await FirstScroll();
JArray resArray = JArray.Parse(res);
searchResult.Merge(resArray);
}
else
{
var res = await subScroll();
var res = await SubScroll();
JArray resArray = JArray.Parse(res);
if (resArray.Count < 200)
{
Expand Down

0 comments on commit 28dc87a

Please sign in to comment.