Fix unecessary parameters in OpenShockApi.GetShockers();

This commit is contained in:
2024-02-04 16:25:15 +01:00
parent f939e79e69
commit c603fe0ccb
3 changed files with 4 additions and 5 deletions

View File

@ -35,10 +35,9 @@ public abstract class OpenShockApi : Api
return HashCode.Combine(Endpoint, ApiKey);
}
public List<OpenShockShocker> GetShockers(string apiKey, string apiEndpoint = DefaultEndpoint,
ILogger? logger = null)
public List<OpenShockShocker> GetShockers()
{
return GetShockers(apiKey, this, apiEndpoint, logger);
return GetShockers(this.ApiKey, this, this.Endpoint, this.Logger);
}
public static List<OpenShockShocker> GetShockers(string apiKey, OpenShockApi api, string apiEndpoint = DefaultEndpoint, ILogger? logger = null)