Skip to content

Commit

Permalink
Code review pointer fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
gagandeepp committed Oct 29, 2020
1 parent dcad93e commit 219bc62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vonage/Voice/VoiceClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,12 @@ public Task<CallResponse> CreateCallAsync(Endpoint toEndPoint, string fromNumber
);
}

CallResponse IVoiceClient.CreateCall(string toNumber, string fromNumber, Ncco ncco)
public CallResponse IVoiceClient.CreateCall(string toNumber, string fromNumber, Ncco ncco)
{
return CreateCallAsync(toNumber,fromNumber,ncco).GetAwaiter().GetResult();
}

CallResponse IVoiceClient.CreateCall(Endpoint toEndPoint, string fromNumber, Ncco ncco)
public CallResponse IVoiceClient.CreateCall(Endpoint toEndPoint, string fromNumber, Ncco ncco)
{
return CreateCallAsync(toEndPoint,fromNumber,ncco).GetAwaiter().GetResult();
}
Expand Down

0 comments on commit 219bc62

Please sign in to comment.