1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-18 20:02:57 +00:00

Fixed warnings

This commit is contained in:
Jkorf
2021-09-29 14:03:57 +02:00
parent aa07029c21
commit bea752e02f
4 changed files with 174 additions and 2 deletions
+1 -1
View File
@@ -244,7 +244,7 @@ namespace CryptoExchange.Net.Objects
/// <typeparam name="K">The new type</typeparam>
/// <param name="data">The data of the new type</param>
/// <returns></returns>
public WebCallResult<K> As<K>([AllowNull] K data)
public new WebCallResult<K> As<K>([AllowNull] K data)
{
return new WebCallResult<K>(ResponseStatusCode, ResponseHeaders, OriginalData, data, Error);
}